Merge branch 'sdk/merge/core'

c9
nightwing 2015-03-21 21:56:22 +04:00
commit 75dce9a13a
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -19,7 +19,7 @@ Base
Tabs vs Spaces
--------------
We use 4 spaces of indenteation.
We use 4 spaces of indentation.
Line Termination
----------------
@ -100,7 +100,7 @@ Your opening braces go on the same line as the statement.
Also, notice the use of whitespace before and after the condition statement.
Closing braces are always followed by a new line. This is releavant for `else`, `catch` and `finally`.
Closing braces are always followed by a new line. This is relevant for `else`, `catch` and `finally`.
*Right*:

Wyświetl plik

@ -63,7 +63,7 @@ updatePackage() {
}
updateAllPackages() {
c9packages=(`"$NODE" -e 'console.log(Object.keys(require("./package.json").c9plugins).join(" "))'`);
c9packages=`"$NODE" -e 'console.log(Object.keys(require("./package.json").c9plugins).join(" "))'`;
count=${#c9packages[@]}
i=0
for m in ${c9packages[@]}; do echo $m;