BGforgeNet / Fallout2_Restoration_Project

Fallout 2 Restoration Project, updated
https://forums.bgforge.net/viewforum.php?f=39
542 stars 37 forks source link

rpu-install.sh keeps asking me to recursively lowercase the directory when I already have done so #277

Closed Vitoria90 closed 2 months ago

Vitoria90 commented 2 months ago

What happened

I can't install the Linux version of RPU, on Ubuntu 22.04.4 LTS, because the install script keeps asking me to recursively lowercase the Fallout 2 directory after I have already done so. I have tried both on the wine virtual C drive and also with the fallout 2 folder directly in the home folder.

What you expected to happen

For it to install

Screenshot

image image image

Savegame

not applicable

burner1024 commented 2 months ago

Run bash -x rpu-install.sh, and you'll see the flow. Also, you don't need to use sudo.

Vitoria90 commented 2 months ago

image

Here's the result of that

burner1024 commented 2 months ago

Now you can see that find . -name '[[:upper:]]*' finds 16 items. Run that command to see what are they.

Vitoria90 commented 2 months ago

So that did solve it. I would like to point out that the instruction of "rename folders recursively" left it very ambiguous that I also had to make sure every file had to be lowercased, though in retrospect it becomes obvious.

Thank you for the help.