taq-traquitana 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/config/proc.sh +3 -1
- data/lib/deploy.rb +1 -1
- metadata +1 -1
data/config/proc.sh
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
# force the production enviroment
|
2
|
+
export RAILS_ENV=production
|
3
|
+
|
1
4
|
# move to the correct directory
|
2
5
|
cd $1/..
|
3
6
|
|
@@ -19,7 +22,6 @@ if [ -n "$migrations" ]; then
|
|
19
22
|
echo
|
20
23
|
echo Running migrations
|
21
24
|
echo ------------------
|
22
|
-
echo $migrations
|
23
25
|
rake db:migrate
|
24
26
|
fi
|
25
27
|
|
data/lib/deploy.rb
CHANGED