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.
15 lines
355 B
15 lines
355 B
# 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 2>/dev/null |
|
ln -s "../../package.json" package.json 2>/dev/null |
|
|
|
meteor run "$@" |
|
|
|
rm ../../package.js package.json
|
|
|