mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 12:11:44 +00:00
I'm dummy
This commit is contained in:
parent
c5d6081f08
commit
3c519cd631
2 changed files with 6 additions and 2 deletions
2
.github/workflows/rewrite.yml
vendored
2
.github/workflows/rewrite.yml
vendored
|
@ -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
|
||||
|
|
6
build.sh
6
build.sh
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue