1
0
mirror of /repos/Prototyper.git synced 2026-02-27 16:12:00 +01:00

removed ace from git, use the one from share in stead.

added installit script.
This commit is contained in:
Aiko Mastboom
2013-04-20 22:58:46 +02:00
parent 51057ef720
commit 98dd57d695
4 changed files with 30 additions and 6 deletions

17
installit Executable file
View File

@@ -0,0 +1,17 @@
#!/usr/bin/env bash
# TODO: rewrite in node
set -e
current_dir=$(cd $(dirname $0) && pwd)
cd ${current_dir}
mkdir -p ./public/lib/knockout
if [ ! -f ./public/lib/knockout/knockout.mapping-latest.js ]; then
cd ./public/lib/knockout
curl -O https://raw.github.com/SteveSanderson/knockout.mapping/master/build/output/knockout.mapping-latest.js
cd ${current_dir}
fi