Skip to content

Commit

Permalink
add review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
benmaidel committed Sep 21, 2023
1 parent b725b65 commit 321dba9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/nwjs_install
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TEMPFILE="nwjs.tar.gz"
mkdir -p ../nwjs
cd ../nwjs

VERSION="v0.60.0" # verified working, to be incremented explicitly
VERSION="v0.60.1" # verified working, to be incremented explicitly

# check if nw is already existing and up-to-date, abort if so
if [ -f nw ]; then
Expand All @@ -31,7 +31,7 @@ ARCH="x64"
if [ `uname -m` == "x86_64" ]; then
ARCH="x64"
elif [ `uname -m` == "aarch64" ]; then
ARCH="arm64"
ARCH="arm64"
else
ARCH="ia32"
fi
Expand Down Expand Up @@ -66,7 +66,7 @@ echo -e "Successfully downloaded nwjs!"

echo "Unpacking..."
tar -xzf $TEMPFILE --strip-components 1
#rm $TEMPFILE
rm $TEMPFILE
echo "$VERSION" > version

cd ..
Expand Down

0 comments on commit 321dba9

Please sign in to comment.