You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Linux installation with curl -0 https://raw.githubusercontent.com/testmycode/tmc-cli/master/scripts/install.sh | bash does not seem to work correctly if the path has spaces. The alias in .tmc-autocomplete.sh is generated in a format that does not work. The spaces need to be escaped with backslash when setting up an alias, even when using quotations:
~ > alias tmctest="/home/test/Documents/Courses/Securing software/tmc"
~ > tmctest
bash: /home/test/Documents/Courses/Securing: No such file or directory
~ > alias tmctest="/home/test/Documents/Courses/Securing\ software/tmc"
~ > tmctest
Usage: tmc [args] COMMAND [command-args]
TMC commands:
...
The text was updated successfully, but these errors were encountered:
nikomn
changed the title
Install
Install not working if path has spaces
Mar 17, 2021
On Linux installation with
curl -0 https://raw.githubusercontent.com/testmycode/tmc-cli/master/scripts/install.sh | bash
does not seem to work correctly if the path has spaces. The alias in .tmc-autocomplete.sh is generated in a format that does not work. The spaces need to be escaped with backslash when setting up an alias, even when using quotations:The text was updated successfully, but these errors were encountered: