Merge pull request #10 from gergely-marko/master

Added rPI-2 support (arm7)
This commit is contained in:
Ruben Daniels 2015-02-15 14:31:26 -08:00
commit 1bcdb47613
4 changed files with 5 additions and 1 deletions

View File

@ -24,6 +24,7 @@ case "$uname" in
*x86_64*) arch=x64 ;;
*i*86*) arch=x86 ;;
*armv6l*) arch=arm-pi ;;
*armv7l*) arch=arm-pi ;;
esac
showStatus () { printf "\e[1A\e[0K\r%s\n" $1; }

View File

@ -24,6 +24,7 @@ case "$uname" in
*x86_64*) arch=x64 ;;
*i*86*) arch=x86 ;;
*armv6l*) arch=arm-pi ;;
*armv7l*) arch=arm-pi ;;
esac
showStatus () { printf "\e[1A\e[0K\r%s\n" $1; }

View File

@ -18,6 +18,7 @@ case "$uname" in
*x86_64*) arch=x64 ;;
*i*86*) arch=x86 ;;
*armv6l*) arch=arm-pi ;;
*armv7l*) arch=arm-pi ;;
esac
if ! [[ -f ~/.c9/installed ]] && ! [[ $os == "windows" ]]; then
@ -77,4 +78,4 @@ npm install || true
echo "Success!"
echo "run 'node server.js -p 8181 -l 0.0.0.0' to launch Cloud9"
echo "run 'node server.js -p 8181 -l 0.0.0.0' to launch Cloud9"

View File

@ -24,6 +24,7 @@ case "$uname" in
*x86_64*) arch=x64 ;;
*i*86*) arch=x86 ;;
*armv6l*) arch=arm-pi ;;
*armv7l*) arch=arm-pi ;;
esac