Skip to content

Commit fe76c5c

Browse files
committed
fix if statement
1 parent 98726c8 commit fe76c5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/copyPasteDetection.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Determine base and target branches for comparison.
3939
run: |
40-
if [ $IS_LOCAL == 'false'] then
40+
if [[ $IS_LOCAL == 'false' ]]; then
4141
echo "CURRENT_BRANCH=${{ github.head_ref }}" >> $GITHUB_ENV
4242
echo "TARGET_BRANCH=${{ github.event.pull_request.base.ref }}" >> $GITHUB_ENV
4343
else

0 commit comments

Comments
 (0)