Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Instructions to install on Linux #2

Open
th3m opened this issue Jan 28, 2017 · 2 comments
Open

Instructions to install on Linux #2

th3m opened this issue Jan 28, 2017 · 2 comments

Comments

@th3m
Copy link

th3m commented Jan 28, 2017

No description provided.

@Wiethoofd
Copy link
Owner

The HUD for TF2 requires every file and folder name to be lowercase when using it under linux.

I have a snippet of code somewhere that does a mv for every uppercase filename to become lowercase when run from the custom hud folder, but I want to integrate that with the VPK extraction for the default hud files before releasing it.

@KKire
Copy link

KKire commented Sep 21, 2017

Open Terminal in custom folder and run this command

find ./* | while read upName; do loName=`echo "${upName}" | tr '[:upper:]' '[:lower:]'`; mv "$upName" "$loName"; done

It will rename everything to lower case and should work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants