mirror of
https://github.com/obi1kenobi/cargo-semver-checks-action.git
synced 2024-11-25 09:29:32 +01:00
Fix quoting bug.
This commit is contained in:
parent
869bbec6f1
commit
29dd54c10c
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ runs:
|
|||
if [[ "$PACKAGE_NAME" == '' ]]; then
|
||||
export PACKAGE_NAME="$("$GITHUB_ACTION_PATH/find_workspace_crates.sh")"
|
||||
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,
|
||||
# then build rustdoc JSON.
|
||||
|
|
Loading…
Reference in a new issue