Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- I did that but I get this error ... --- Quote End --- That is not adding the command to your path. That was an attempt to change directory. In Tcl all things are strings. Because your command had a space in it, Tcl interprets it as two strings. You just needed to use quotes, or parentheses, i.e., cd "c:/program files/tortoiseSVN/bin" cd {c:/program files/tortoiseSVN/bin} But this is not the solution I was recommending. You need to add this path to you PATH environment variable. Once you have done that, at the Quartus Tcl console you can type: puts $env(PATH) and you should see the new variable. Note that you will need to re-start Quartus once you change the PATH variable since the application only reads it when it starts. Cheers, Dave