Fix quoting bug.

This commit is contained in:
Predrag Gruevski 2022-07-20 20:14:39 -04:00
parent 869bbec6f1
commit 29dd54c10c

View file

@ -32,7 +32,7 @@ runs:
if [[ "$PACKAGE_NAME" == '' ]]; then if [[ "$PACKAGE_NAME" == '' ]]; then
export PACKAGE_NAME="$("$GITHUB_ACTION_PATH/find_workspace_crates.sh")" export PACKAGE_NAME="$("$GITHUB_ACTION_PATH/find_workspace_crates.sh")"
fi fi
export PACKAGE_NAME_WITH_UNDERSCORES="$(echo $"PACKAGE_NAME" | tr '-' '_')" export PACKAGE_NAME_WITH_UNDERSCORES="$(echo "$PACKAGE_NAME" | tr '-' '_')"
# Switch to the tag for the correct baseline version, # Switch to the tag for the correct baseline version,
# then build rustdoc JSON. # then build rustdoc JSON.