Skip to content

Commit

Permalink
fix: quote crudini args to pass value with spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
xgaia committed May 2, 2022
1 parent 5878396 commit e4b8f22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtuoso.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ do
key=`echo "$setting" | egrep -o "_[^_]+=" | sed 's/[_=]//g'`
value=`echo "$setting" | egrep -o "=.*$" | sed 's/^=//g'`
echo "Registering $section[$key] to be $value"
crudini --set /data/virtuoso.ini $section $key $value
crudini --set /data/virtuoso.ini "$section" "$key" "$value"
done

# Set dba password
Expand Down

0 comments on commit e4b8f22

Please sign in to comment.