Skip to content
Snippets Groups Projects
Commit d77c10a3 authored by jdh8d's avatar jdh8d
Browse files

removed to-upper of server name

Former-commit-id: ec139e60748498f41c92e017302078fa7b78cb44
parent 1b1da6aa
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,7 @@ check_opts()
echo "Setting nol = $use_nol"
fi
server=${server^^} # uppercase the server setting.
server=${server} # uppercase the server setting.
}
......@@ -518,7 +518,7 @@ finalize_json()
# note the weird $'\n' is bash's way to encode a new line.
# set line= ,\n"alias=file" -- but the bash is ugly, and I can't do better.
if [[ $lib == mod* ]]; then
if [[ $lib == mod* ]] && [[ $server = "APACHE" ]]; then
mkdir -p $new_variant_dir/modules 2>/dev/null || true
cp $indir/$lib_dir/$lib $new_variant_dir/modules
line=", "$'\n\t\t\t'" \"/testing/content/apache_support/modules/$lib=$new_variant_dir_ts/modules/$lib\" "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment