# HG changeset patch # User John D # Date 1448668933 18000 # Node ID 57bc5d4ff6606464a2afdba53b469b60cfa00502 # Parent 164533b3691b30f819074c3328e2f46f022994b3 cmdshell: use OCTAVE_HOME variable instead of OCT_HOME * installer-files/cmdshell.bat: set/use OCTAVE_HOME env var diff -r 164533b3691b -r 57bc5d4ff660 installer-files/cmdshell.bat --- a/installer-files/cmdshell.bat Fri Nov 27 19:00:06 2015 -0500 +++ b/installer-files/cmdshell.bat Fri Nov 27 19:02:13 2015 -0500 @@ -1,13 +1,13 @@ @echo off -set OCT_HOME=%~dp0 +set OCTAVE_HOME=%~dp0 Rem Set up PATH. Make sure the octave bin dir Rem comes first. -set PATH=%OCT_HOME%bin;%PATH% +set PATH=%OCTAVE_HOME%bin;%PATH% set TERM=cygwin -%OCT_HOME%\bin\bash.exe +%OCTAVE_HOME%\bin\bash.exe