about summary refs log tree commit diff
path: root/src/ci/scripts
diff options
context:
space:
mode:
authorChris Denton <christophersdenton@gmail.com>2020-05-25 13:53:02 +0100
committerChris Denton <christophersdenton@gmail.com>2020-05-25 13:53:02 +0100
commit912963bd0856239828253af8d04e4f62e75cafd7 (patch)
tree3269a2e5b92264af3627f8bbb3db6fe7a3192cde /src/ci/scripts
parent997d953eeec0be62c59ea028c95cd7be49adf58f (diff)
Remove legacy InnoSetup GUI installer
On Windows the InnoSetup installer was superseded by the MSI installer. It's no longer needed.
Diffstat (limited to 'src/ci/scripts')
-rwxr-xr-xsrc/ci/scripts/install-innosetup.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/ci/scripts/install-innosetup.sh b/src/ci/scripts/install-innosetup.sh
deleted file mode 100755
index 04ca249777a..00000000000
--- a/src/ci/scripts/install-innosetup.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-# We use InnoSetup and its `iscc` program to also create combined installers.
-# Honestly at this point WIX above and `iscc` are just holdovers from
-# oh-so-long-ago and are required for creating installers on Windows. I think
-# one is MSI installers and one is EXE, but they're not used so frequently at
-# this point anyway so perhaps it's a wash!
-
-set -euo pipefail
-IFS=$'\n\t'
-
-source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
-
-if isWindows; then
-    curl.exe -o is-install.exe "${MIRRORS_BASE}/2017-08-22-is.exe"
-    cmd.exe //c "is-install.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-"
-
-    ciCommandAddPath "C:\\Program Files (x86)\\Inno Setup 5"
-fi