Skip to content

Commit

Permalink
Merge branch 'scowalt-arch-fix'
Browse files Browse the repository at this point in the history
Fixing Architecture check.
  • Loading branch information
taaem committed Apr 5, 2015
2 parents 1d595b5 + d778c4a commit c28d1c0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# nodejs-linux-installer
This is an universal NodeJS installer for Linux.
I don't take any responsibilities if you blow your system up!
This is in Alpha/Beta Stage so be careful!
4 changes: 2 additions & 2 deletions node-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ echo "Get Latest Version Number..."
{
wget --output-document=node-updater.html https://nodejs.org/dist/latest/

ARCH=uname -m
ARCH=$(uname -m)

if [$ARCH = x86_64]
if [ $ARCH = x86_64 ]
then
grep -o '>node-v.*-linux-x64.tar.gz' node-updater.html > node-cache.txt 2>&1

Expand Down

0 comments on commit c28d1c0

Please sign in to comment.