Skip to content

Commit

Permalink
Add a pause to the scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonBlade committed Aug 27, 2019
1 parent 40ba75a commit 92cb1d5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pack.bat
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
xnbcli.exe pack ".\unpacked" ".\packed"
xnbcli.exe pack ".\unpacked" ".\packed"
echo Press enter to continue
pause
1 change: 1 addition & 0 deletions pack.command
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
cd "`dirname "$0"`"
./xnbcli pack ./unpacked ./packed
read -p "Press enter to continue"
1 change: 1 addition & 0 deletions pack.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
cd "`dirname "$0"`"
./xnbcli pack ./unpacked ./packed
read -p "Press enter to continue"
4 changes: 3 additions & 1 deletion unpack.bat
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
xnbcli.exe unpack ".\packed" ".\unpacked"
xnbcli.exe unpack ".\packed" ".\unpacked"
echo Press enter to continue
pause
1 change: 1 addition & 0 deletions unpack.command
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
cd "`dirname "$0"`"
./xnbcli unpack ./packed ./unpacked
read -p "Press enter to continue"
1 change: 1 addition & 0 deletions unpack.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/bash
cd "`dirname "$0"`"
./xnbcli unpack ./packed ./unpacked
read -p "Press enter to continue"

0 comments on commit 92cb1d5

Please sign in to comment.