Hello, I installed redmine, got it working. I set the $PATH per the instructions. For some reason, the $PATH variable keeps getting reset back to a default, losing the redmine-specific path info. Does anyone know how to make the $PATH variable NOT reset? --Thanks asked 22 May '11, 09:35 rammllc |
Please note that the PATH variable is only set for your current terminal session. If you want to have it automatically initialized to the desired value whenever you log in over SSH, you can add the "export PATH=<your custom="" path="">" command to your .bashrc file. In this way the custom PATH value will be automatically set on every SSH login. answered 22 May '11, 09:40 tie |