From 322f70fe471750a47cf11e0e642538e49541066a Mon Sep 17 00:00:00 2001 From: zontreck Date: Sat, 31 Aug 2024 00:06:30 -0700 Subject: [PATCH] Try to get the dart compile commands to execute on windows. --- Jenkinsfile | 6 +++++- README.md | 2 +- installscript.sh | 4 ++++ 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 installscript.sh diff --git a/Jenkinsfile b/Jenkinsfile index 8620743..9d48328 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,6 +59,10 @@ pipeline { cd dart mkdir out dart pub get + ''' + + bat ''' + cd dart dart compile exe -o out\\dbikc.exe bin\\dbikc.dart dart compile exe -o out\\uuidgen.exe bin\\uuidgen.dart @@ -72,7 +76,7 @@ pipeline { ''' archiveArtifacts artifacts: "dart\\out\\*.exe", fingerprint: true - + } post { diff --git a/README.md b/README.md index 2ec9865..f7a9b31 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,4 @@ A repo with simple tools or utilities that are separate from other projects. ## Linux -Execute the command: `curl -fsSL https:// | bash -` \ No newline at end of file +Execute the command: `curl -sSL https://git.zontreck.com/AriasCreations/SimpleHelperTools/raw/branch/main/installscript.sh | bash` \ No newline at end of file diff --git a/installscript.sh b/installscript.sh new file mode 100644 index 0000000..e1cc583 --- /dev/null +++ b/installscript.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Starting up Aria's Creations tools installer" +PASS=$(zenity --password --title="SHT Installer" --timeout=120) \ No newline at end of file