mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
11 lines
236 B
Bash
Executable File
11 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
cd $METEOR_HOME/examples;
|
|
read -p "Prefix? " PREFIX;
|
|
for EXAMPLE in leaderboard todos wordplay parties
|
|
do
|
|
cd $EXAMPLE;
|
|
echo "meteor deploy $@ $PREFIX-$EXAMPLE;"
|
|
meteor deploy $@ $PREFIX-$EXAMPLE;
|
|
cd ..;
|
|
done
|