Commit f146d76b1f4b2bedc2bc199b3f6d181817130f62

Authored by Daniela Feitosa
2 parents 0541cc4a 69977e49

Merge commit 'refs/merge-requests/198' of git://gitorious.org/noosfero/noosfero …

…into merge-requests/198
Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
debian/noosfero-console
... ... @@ -2,4 +2,7 @@
2 2  
3 3 set -e
4 4  
5   -cd /usr/share/noosfero && su noosfero -c "./script/console production"
  5 +environment="$1"
  6 +test -z "$environment" && environment=production
  7 +
  8 +cd /usr/share/noosfero && su noosfero -c "./script/console $environment"
... ...