diff options
author | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2018-05-14 17:09:19 +0000 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz (arab, vxp) <lucio@lucioillanes.de> | 2018-05-14 17:09:19 +0000 |
commit | 40514908c72e05fcc28ebe6bbff4104346c25b0e (patch) | |
tree | 003363dea333e03a3d343994d1c68d12e1b198a2 | |
parent | 981580852f392e838aacb43dd223581628a01684 (diff) | |
download | midipix_build-40514908c72e05fcc28ebe6bbff4104346c25b0e.tar.bz2 midipix_build-40514908c72e05fcc28ebe6bbff4104346c25b0e.tar.xz |
etc/midipix_shortcut.vbs: remove obsolete script.
-rw-r--r-- | etc/midipix_shortcut.vbs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/etc/midipix_shortcut.vbs b/etc/midipix_shortcut.vbs deleted file mode 100644 index ce8e10d4..00000000 --- a/etc/midipix_shortcut.vbs +++ /dev/null @@ -1,14 +0,0 @@ -Set WshShell = CreateObject("WScript.Shell")
-If WScript.Arguments.Count = 0 Then
- CygwinPath = "C:\cygwin64"
-Else
- CygwinPath = WScript.Arguments(0)
-End If
-Set fso = CreateObject("Scripting.FileSystemObject")
-Set oMyShortCut = WshShell.CreateShortcut(WshShell.CurrentDirectory + "\Midipix shell.lnk")
-oMyShortCut.Arguments = "midipix.sh"
-oMyShortcut.IconLocation = CygwinPath + "\Cygwin-Terminal.ico"
-oMyShortCut.TargetPath = CygwinPath + "\bin\sh.exe"
-oMyShortCut.WindowStyle = 4
-oMyShortCut.WorkingDirectory = WshShell.CurrentDirectory
-oMyShortCut.Save
|