mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-11 20:28:14 +03:00
16 lines
355 B
Bash
16 lines
355 B
Bash
|
# 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-noglyph.js" ../../package.js
|
||
|
ln -s "../../package.json" package.json
|
||
|
|
||
|
MONGO_URL=mongodb:// meteor run
|
||
|
|
||
|
rm ../../package.js package.json
|