Merge branch 'subtree/merge/core'

pull/39/head
nightwing 2015-02-21 04:53:27 +04:00
commit cb1c5fa86a
5 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -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
Happy coding, Cloud9

Wyświetl plik

@ -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; }

Wyświetl plik

@ -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; }

Wyświetl plik

@ -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"

Wyświetl plik

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