Skip to content

Commit

Permalink
fix: fixes whitespaces in variables
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherferreira9 committed Oct 25, 2024
1 parent d0f04e4 commit a67fb29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build-static-dapps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ existing_folders=$(git ls-tree -d --name-only origin/gh-pages)
echo "Existing folders on gh-pages branch:"
echo "$existing_folders"

if [[ ! " $existing_folders " =~ " $deployment_folder " ]]; then
if [[ ! "$existing_folders" =~ "$deployment_folder" ]]; then
existing_folders="$existing_folders $deployment_folder"
fi

Expand Down

0 comments on commit a67fb29

Please sign in to comment.