mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
19 lines
285 B
Bash
Executable File
19 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd `dirname $0`
|
|
cd ../examples
|
|
|
|
|
|
read -p "Prefix? " PREFIX;
|
|
|
|
for EXAMPLE in * ; do
|
|
if [ -d "$EXAMPLE/.meteor" ] ; then
|
|
cd $EXAMPLE;
|
|
echo "meteor deploy $@ $PREFIX-$EXAMPLE;"
|
|
meteor deploy $@ $PREFIX-$EXAMPLE;
|
|
cd ..;
|
|
fi
|
|
done
|