Skip to content

Commit

Permalink
More script error fixes (#8820)
Browse files Browse the repository at this point in the history
  • Loading branch information
kurkle committed Apr 4, 2021
1 parent 3915cb0 commit 954fc3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/deploy-docs.sh
Expand Up @@ -46,7 +46,7 @@ cd $TARGET_DIR
git checkout $TARGET_BRANCH

# https://www.chartjs.org/dist/$VERSION
if [["$VERSION" != "$TAG"]] then
if [["$VERSION" != "$TAG"]]; then
deploy_versioned_files $VERSION
fi

Expand Down
2 changes: 1 addition & 1 deletion scripts/utils.sh
Expand Up @@ -11,7 +11,7 @@ function tag_from_version {
if [ "$version" == "master" ]; then
tag=master
elif [[ "$version" =~ ^[^-]+$ ]]; then
if [[ "$mode" == "release" ]]
if [[ "$mode" == "release" ]]; then
tag=$version
else
tag=latest
Expand Down

0 comments on commit 954fc3c

Please sign in to comment.