Skip to content

Commit 55c7d42

Browse files
committed
Fix conditional
1 parent 34bf08f commit 55c7d42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
./command_dump.py
4343
- name: Detect changes on commit
4444
run: |
45-
if [ -n "$(git diff codecov-cli/codecovcli_commands)" || -n "$(git diff prevent-cli/preventcli_commands)" ]; then
45+
if [ -n "$(git diff codecov-cli/codecovcli_commands)" ] || [ -n "$(git diff prevent-cli/preventcli_commands)" ]; then
4646
echo "Please run `python command_dump.py` before submitting, or install the hooks"
4747
echo "$(git diff codecov-cli/codecovcli_commands)"
4848
echo "$(git diff prevent-cli/preventcli_commands)"

0 commit comments

Comments
 (0)