From f12fbd2f6b1443868ad3c042a56dd8634769910e Mon Sep 17 00:00:00 2001 From: Vito Van Date: Tue, 6 Aug 2024 18:13:19 +0800 Subject: [PATCH] ci: upgrade rcedit to 2.0.0 hope it will fix some mystery Windows 10 CMD problem #179 --- build/build.sh | 2 +- s/usr/windows/icon.lisp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.sh b/build/build.sh index 1c575aa2..a0d9b41f 100644 --- a/build/build.sh +++ b/build/build.sh @@ -83,7 +83,7 @@ build_msys () { RCEDIT_LICENSE="./s/usr/windows/rcedit-LICENSE" if [ ! -f "$RCEDIT" ]; then set -x - curl -o "$RCEDIT" -L https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe + curl -o "$RCEDIT" -L https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe curl -o "$RCEDIT_LICENSE" -L https://raw.githubusercontent.com/electron/rcedit/master/LICENSE set +x fi diff --git a/s/usr/windows/icon.lisp b/s/usr/windows/icon.lisp index 1d88ab3e..376fc784 100644 --- a/s/usr/windows/icon.lisp +++ b/s/usr/windows/icon.lisp @@ -6,7 +6,7 @@ (defun set-icon (app-icon) (let ((rcedit-bin (merge-pathnames "s/usr/windows/rcedit.exe" *calm-env-calm-home*)) - (rcedit-url "https://github.com/electron/rcedit/releases/download/v1.1.1/rcedit-x64.exe") + (rcedit-url "https://github.com/electron/rcedit/releases/download/v2.0.0/rcedit-x64.exe") (old-sbcl (merge-pathnames "sbcl/bin/sbcl.exe" *calm-env-calm-home*)) (new-sbcl (merge-pathnames "sbcl/bin/sbcl-with-icon.exe" *calm-env-calm-home*)) (calm-no-console (merge-pathnames "calmNoConsole.exe" *calm-env-calm-home*)))