From 4951a2a3c0a7ed969210566c14ddc024b8d77550 Mon Sep 17 00:00:00 2001 From: Misite Bao Date: Mon, 6 Feb 2023 21:33:48 +0800 Subject: [PATCH] chore: delete scripts --- scripts/build-macos-arm.sh | 9 --------- scripts/build-macos-intel.sh | 9 --------- scripts/build-macos.sh | 9 --------- scripts/build-windows.sh | 9 --------- scripts/build.sh | 9 --------- scripts/install-wails-cli.sh | 14 -------------- 6 files changed, 59 deletions(-) delete mode 100644 scripts/build-macos-arm.sh delete mode 100644 scripts/build-macos-intel.sh delete mode 100644 scripts/build-macos.sh delete mode 100644 scripts/build-windows.sh delete mode 100644 scripts/build.sh delete mode 100644 scripts/install-wails-cli.sh diff --git a/scripts/build-macos-arm.sh b/scripts/build-macos-arm.sh deleted file mode 100644 index bc6ee0a..0000000 --- a/scripts/build-macos-arm.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/bash - -echo -e "Start running the script..." -cd ../ - -echo -e "Start building the app for macos platform..." -wails build --clean --platform darwin/arm64 - -echo -e "End running the script!" diff --git a/scripts/build-macos-intel.sh b/scripts/build-macos-intel.sh deleted file mode 100644 index f359f63..0000000 --- a/scripts/build-macos-intel.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/bash - -echo -e "Start running the script..." -cd ../ - -echo -e "Start building the app for macos platform..." -wails build --clean --platform darwin - -echo -e "End running the script!" diff --git a/scripts/build-macos.sh b/scripts/build-macos.sh deleted file mode 100644 index d61531f..0000000 --- a/scripts/build-macos.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/bash - -echo -e "Start running the script..." -cd ../ - -echo -e "Start building the app for macos platform..." -wails build --clean --platform darwin/universal - -echo -e "End running the script!" diff --git a/scripts/build-windows.sh b/scripts/build-windows.sh deleted file mode 100644 index 47b7789..0000000 --- a/scripts/build-windows.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/bash - -echo -e "Start running the script..." -cd ../ - -echo -e "Start building the app for windows platform..." -wails build --clean --platform windows/amd64 - -echo -e "End running the script!" diff --git a/scripts/build.sh b/scripts/build.sh deleted file mode 100644 index 20ab7eb..0000000 --- a/scripts/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/bash - -echo -e "Start running the script..." -cd ../ - -echo -e "Start building the app..." -wails build --clean - -echo -e "End running the script!" diff --git a/scripts/install-wails-cli.sh b/scripts/install-wails-cli.sh deleted file mode 100644 index 7539d8e..0000000 --- a/scripts/install-wails-cli.sh +++ /dev/null @@ -1,14 +0,0 @@ -#! /bin/bash - -echo -e "Start running the script..." -cd ../ - -echo -e "Current Go version: \c" -go version - -echo -e "Install the Wails command line tool..." -go install github.com/wailsapp/wails/v2/cmd/wails@latest - -echo -e "Successful installation!" - -echo -e "End running the script!"