summaryrefslogtreecommitdiffstats
path: root/ds9/win
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-02-03 21:27:53 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-02-03 21:27:53 (GMT)
commit0291f273e7c80dc7b28612db9b077fa983edb671 (patch)
treef6d8036439b27f6869ebfe194b9ae21d32f2d4fc /ds9/win
parent5a958264826294a0d3226fa94c1886e55b105b18 (diff)
downloadblt-0291f273e7c80dc7b28612db9b077fa983edb671.zip
blt-0291f273e7c80dc7b28612db9b077fa983edb671.tar.gz
blt-0291f273e7c80dc7b28612db9b077fa983edb671.tar.bz2
simplify build
Diffstat (limited to 'ds9/win')
-rw-r--r--ds9/win/install.vbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ds9/win/install.vbs b/ds9/win/install.vbs
index 7223ce0..35a0a20 100644
--- a/ds9/win/install.vbs
+++ b/ds9/win/install.vbs
@@ -3,7 +3,7 @@
'
'dim fso
'set fso = CreateObject("Scripting.FileSystemObject")
-'fso.CopyFolder "..\WZSE0.TMP","c:\ds9",True
+'fso.CopyFolder "..\WZSE0.TMP","c:\SAOImage DS9",True
'
' Create a ds9 shortcut on the Desktop
'
@@ -11,5 +11,5 @@ set WshShell = CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
set oMyShortCut= WshShell.CreateShortcut(strDesktop+"\SAOImage DS9.lnk")
oMyShortCut.WindowStyle = 7
-oMyShortCut.TargetPath = "c:\ds9\ds9.exe"
+oMyShortCut.TargetPath = "c:\SAOImage DS9\ds9.exe"
oMyShortCut.Save