chrisgoringe / cg-noise

26 stars 8 forks source link

Manual Install steps fail due to incorrectly named cg_custom_core #10

Closed Arron17 closed 11 months ago

Arron17 commented 11 months ago

In the manual install steps it advises to run the command

git clone https://github.com/chrisgoringe/cg-custom-core.git

This creates a folder called "cg-custom-core" with hypens.

However the hijack.py script calls "cg_custom_core" with underscores. The Install.py script changes the folder name to "cg_custom_core" with underscores.

The installation steps need to either cover changing the folder name, or the script should call cg-custom-core instead so it fits with the github naming convention.

chrisgoringe commented 11 months ago

Thanks for picking this up - the manual install steps have been corrected to

git clone https://github.com/chrisgoringe/cg-custom-core.git cg_custom_core

and the update steps similarly.