Skip to content

Commit 958e9e3

Browse files
committed
fix syntax warning
1 parent 6442cd4 commit 958e9e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

monorepo-migration/migrate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ if [ -d "$SOURCE_REPO_NAME/.github/workflows" ]; then
379379
if [ -f "$workflow" ]; then
380380
filename=$(basename "$workflow")
381381

382-
if [ "${filename}" == "ci.yaml" && "${SKIP_CI_WORKFLOW}" == "true" ]; then
382+
if [[ "${filename}" == "ci.yaml" && "${SKIP_CI_WORKFLOW}" == "true" ]]; then
383383
echo "Skipping ci.yaml workflow as requested by user"
384384
continue
385385
fi

0 commit comments

Comments
 (0)