1
0
mirror of /repos/Prototyper.git synced 2026-02-27 16:12:00 +01:00
Files
Prototyper/installit
Aiko Mastboom 98dd57d695 removed ace from git, use the one from share in stead.
added installit script.
2013-04-20 22:58:46 +02:00

18 lines
374 B
Bash
Executable File

#!/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