File tree 3 files changed +28
-1
lines changed
3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -194,6 +194,20 @@ function doInstallKernel() {
194
194
fi
195
195
}
196
196
197
+ function doInstallOuttaSpace() {
198
+ check " Install outta_space" \
199
+ " cd $BOOTSTRAP_DIR /third/outta_space; cp -r * $CHROOT_DIR /lounge/www/"
200
+ }
201
+
202
+ function doBuildOuttaSpace() {
203
+ check " Clone outta_space" \
204
+ " cd $BOOTSTRAP_DIR /third/; ./clone_outta_space.sh"
205
+
206
+ check " Build outta_space" \
207
+ " cd $BOOTSTRAP_DIR /third/; ./build_outta_space.sh"
208
+ }
209
+
210
+
197
211
function doBuild() {
198
212
check " Update Repositories" \
199
213
" $CHRT $APTNI update"
513
527
else
514
528
skip " cleanup packages"
515
529
fi
516
-
530
+ doBuildOuttaSpace
531
+ doInstallOuttaSpace
517
532
doCleanupFiles
518
533
doCopy
519
534
doCreateBuildHtml
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ cd outta_space
4
+ npm install
5
+ ./node_modules/.bin/browserify -d src/main.js -t babelify -o bundle.js
6
+
7
+
8
+
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ rm -rf outta_space
3
+ git clone https://github.com/screeninvader/outta_space.git
4
+
You can’t perform that action at this time.
0 commit comments