Commit f8bfab0fff649d27ad1dee3e11d7e9ba70564597

Authored by Antonio Terceiro
1 parent 49ef3f5d

script/noosfero-plugins: fix syntax error

somehow dash does not say anything, but bash complains.
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
script/noosfero-plugins
... ... @@ -8,7 +8,7 @@ if [ -e /etc/default/noosfero ]; then
8 8 . /etc/default/noosfero
9 9 fi
10 10  
11   -if [ -z "$NOOSFERO_DIR"]; then
  11 +if [ -z "$NOOSFERO_DIR" ]; then
12 12 this_script=$(readlink -f $0)
13 13 NOOSFERO_DIR=$(dirname $this_script | xargs dirname)
14 14 fi
... ...