diff installer-files/octave-firsttime.vbs @ 4258:a45374f7d9a3

Use 8.3 format for octave path * installer-files/octave-firsttime.vbs: convert OctavePath to shortpath * installer-files/octave.vbs: convert OctavePath to shortpath * installer-files/octave.bat: convert OCT_HOME to 8.3 path * tools/makeinst-script.sh.in: call pkg rbuild and fc_cache with 8.3 pathname
author John D
date Tue, 06 Dec 2016 02:27:58 -0500
parents 44b1a9b2193e
children b73fe78f73c3
line wrap: on
line diff
--- a/installer-files/octave-firsttime.vbs	Mon Dec 05 17:46:56 2016 -0500
+++ b/installer-files/octave-firsttime.vbs	Tue Dec 06 02:27:58 2016 -0500
@@ -5,6 +5,10 @@
 ' get the directory that script resides in
 Set fso = CreateObject("Scripting.FileSystemObject")
 OctavePath = fso.GetParentFolderName(WScript.ScriptFullName)
+' get path as a 8.3 path
+Set fo = fso.GetFolder(OctavePath)
+OctavePath = fo.ShortPath
+Set fo = Nothing
 Set fso = Nothing
 
 ' set up path to ensure octave bin comes first