Commit 8587e2eb by Fred Smith

bash variables can't have '-' in them

parent 22fa8d3f
......@@ -89,9 +89,9 @@ if [[ ! -z "$playbook_dir" ]]; then
fi
configurationprivate_params=""
if [[ ! -z "$configurationprivate-repo" ]]; then
if [[ ! -z "$configurationprivaterepo" ]]; then
configurationprivate_params="--configuration-private-repo $configurationprivate-repo"
if [[ ! -z "$configurationprivate-version" ]]; then
if [[ ! -z "$configurationprivateversion" ]]; then
configurationprivate_params="$configurationprivate_params --configuration-private-version $configurationprivate-version"
fi
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment