I'm dummy

This commit is contained in:
Pablo Curiel 2024-02-17 00:19:29 +01:00
parent c5d6081f08
commit 3c519cd631
2 changed files with 6 additions and 2 deletions

View File

@ -60,7 +60,7 @@ jobs:
working-directory: nxdumptool
run: |
echo "nxdt_commit=$(git rev-parse --short ${{ github.sha }})" >> $GITHUB_ENV
./build.sh
./build.sh --noconfirm
#- name: Build nxdumptool-rewrite GUI binary
# working-directory: nxdumptool

View File

@ -1,4 +1,6 @@
#!/bin/bash
ARG=${1:-'--confirm'}
cd "$(dirname "${BASH_SOURCE[0]}")"
# Clean-up from last build
@ -32,4 +34,6 @@ make clean_all
rm -f ./source/main.c
mv -f ./main.cpp ./source/main.cpp
read -rsp $'Press any key to continue...\n' -n 1 key
if [ ${ARG,,} != "--noconfirm" ]; then
read -rsp $'Press any key to continue...\n' -n 1 key
fi