diff --git a/README.md b/README.md index 989805aa..32811a8f 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ During the alpha stage, expect many things to break, not work or simply fail. #### Creating Plugins #### -The best and easiest way to create plugins is on c9.io. Please check out this tutorial for how to [get started writing plugins.](http://cloud9-sdk.readme.io/v0.1/docs/getting-started) +The best and easiest way to create plugins is on c9.io. Please check out this tutorial for how to [get started writing plugins.](http://cloud9-sdk.readme.io/v0.1/docs/getting-started-with-cloud9-plugins) We also have a tutorial for how to get started working on the core plugins. [Check out that tutorial here.](http://cloud9-sdk.readme.io/v0.1/docs/contributing-to-existing-packages) @@ -79,4 +79,4 @@ To protect the interests of the Cloud9 contributors and users we require contrib If you want to contribute to the Cloud9 SDK and/or open source plugins please go to the online form, fill it out and submit it. -Happy coding, Cloud9 \ No newline at end of file +Happy coding, Cloud9 diff --git a/build/build-local.sh b/build/build-local.sh index 920b3a84..4f85a5f2 100755 --- a/build/build-local.sh +++ b/build/build-local.sh @@ -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; } diff --git a/build/build-standalone.sh b/build/build-standalone.sh index 37e1100c..f6c0ab6b 100755 --- a/build/build-standalone.sh +++ b/build/build-standalone.sh @@ -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; } diff --git a/scripts/install-sdk.sh b/scripts/install-sdk.sh index 18bf05d4..1a860986 100755 --- a/scripts/install-sdk.sh +++ b/scripts/install-sdk.sh @@ -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" \ No newline at end of file +echo "run 'node server.js -p 8181 -l 0.0.0.0' to launch Cloud9" diff --git a/scripts/setup-local-dev.sh b/scripts/setup-local-dev.sh index db8a7b04..64eec9d7 100755 --- a/scripts/setup-local-dev.sh +++ b/scripts/setup-local-dev.sh @@ -24,6 +24,7 @@ case "$uname" in *x86_64*) arch=x64 ;; *i*86*) arch=x86 ;; *armv6l*) arch=arm-pi ;; + *armv7l*) arch=arm-pi ;; esac