mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
16 lines
280 B
Bash
Executable File
16 lines
280 B
Bash
Executable File
#!/bin/bash
|
|
|
|
ORIGDIR=$(pwd)
|
|
cd $(dirname $0)
|
|
cd ..
|
|
TOPDIR=$(pwd)
|
|
|
|
# download dev bundle if we don't have it already
|
|
if [ ! -d dev_bundle ] ; then
|
|
./meteor --version
|
|
fi
|
|
|
|
cd "$ORIGDIR"
|
|
export NODE_PATH="$TOPDIR/dev_bundle/lib/node_modules"
|
|
exec "$TOPDIR/dev_bundle/bin/node" $*
|