mirror of https://github.com/RubaXa/Sortable.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
331 B
16 lines
331 B
10 years ago
|
# sanity check: make sure we're in the root directory of the example
|
||
|
cd "$( dirname "$0" )"
|
||
|
|
||
|
# delete temp files even if Ctrl+C is pressed
|
||
|
int_trap() {
|
||
|
echo "Cleaning up..."
|
||
|
}
|
||
|
trap int_trap INT
|
||
|
|
||
|
ln -s "meteor/package.js" ../../package.js
|
||
|
ln -s "../../package.json" package.json
|
||
|
|
||
|
meteor run "$@"
|
||
|
|
||
|
rm ../../package.js package.json
|