Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Rishabh Gupta
purr-data
Commits
abb01e4b
Commit
abb01e4b
authored
Aug 17, 2016
by
Jonathan Wilkes
Browse files
accommodate rpi for nwjs binary download
parent
7d4cf043
Changes
1
Hide whitespace changes
Inline
Side-by-side
l2ork_addons/tar_em_up.sh
View file @
abb01e4b
...
...
@@ -60,6 +60,11 @@ if [ ! -d "../pd/nw/nw" ]; then
arch
=
"x64"
fi
# for rpi
if
[
`
uname
-m
`
-eq
"armv7l"
]
;
then
arch
=
"armv7l"
fi
if
[[
$os
==
"win"
]]
;
then
ext
=
"zip"
# We need the lts version to be able to run on XP. For
...
...
@@ -67,7 +72,12 @@ if [ ! -d "../pd/nw/nw" ]; then
nwjs_version
=
"v0.14.7"
else
ext
=
"tar.gz"
nwjs_version
=
"v0.16.1"
# temporary kluge for rpi-- only 0.15.1 is available atm
if
[
`
uname
-m
`
-eq
"armv7l"
]
;
then
nwjs_version
=
"v0.15.1"
else
nwjs_version
=
"v0.16.1"
fi
fi
nwjs
=
"nwjs-sdk"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment