Make tools/create_standalone.sh executable

This commit is contained in:
Alexander Grund
2026-02-23 12:27:19 +01:00
parent 2f0ffbbaef
commit e0aadea8fd
4 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ jobs:
- name: Create standalone
if: matrix.standalone == 'Standalone'
run: |
bash tools/create_standalone.sh "$PWD/../nowide_standalone"
tools/create_standalone.sh "$PWD/../nowide_standalone"
rm -rf *
cp -r ../nowide_standalone/* .
mkdir build
+1 -1
View File
@@ -48,7 +48,7 @@ jobs:
- name: Create standalone version
run: |
bash tools/create_standalone.sh nowide_standalone_${{steps.get_tag.outputs.tag}}
tools/create_standalone.sh nowide_standalone_${{steps.get_tag.outputs.tag}}
tar -czf nowide_standalone.tar.gz nowide_standalone_${{steps.get_tag.outputs.tag}}
- name: Test standalone release tarball
run: |
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
- name: Create standalone version
id: standalone
run: |
bash tools/create_standalone.sh /tmp/nowide_standalone
tools/create_standalone.sh /tmp/nowide_standalone
git checkout "$STANDALONE_BRANCH_NAME" -- || git checkout -b "$STANDALONE_BRANCH_NAME"
rm -r *
mv /tmp/nowide_standalone/* .
Regular → Executable
View File