Try to get the dart compile commands to execute on windows.

This commit is contained in:
zontreck 2024-08-31 00:06:30 -07:00
parent 4a0089de3b
commit 322f70fe47
3 changed files with 10 additions and 2 deletions

4
Jenkinsfile vendored
View file

@ -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

View file

@ -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 -`
Execute the command: `curl -sSL https://git.zontreck.com/AriasCreations/SimpleHelperTools/raw/branch/main/installscript.sh | bash`

4
installscript.sh Normal file
View file

@ -0,0 +1,4 @@
#!/bin/bash
echo "Starting up Aria's Creations tools installer"
PASS=$(zenity --password --title="SHT Installer" --timeout=120)