Skip to content

Commit 3cd3134

Browse files
invert condition for setup script
1 parent b41454d commit 3cd3134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rebuildDependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
run: |
7575
echo CUSTOM_PATCHES_PATH="$(pwd)/conan_patches" >> $GITHUB_ENV
7676
echo DEPS_FILE="dependencies-${{ matrix.platform }}.tgz" >> $GITHUB_ENV
77-
[ '${{ matrix.before_install }}' ] && 'ci/${{ matrix.before_install }}'
77+
[ -z '${{ matrix.before_install }}' ] || 'ci/${{ matrix.before_install }}'
7878
7979
- uses: actions/setup-java@v4
8080
if: ${{ startsWith(matrix.platform, 'android') }}

0 commit comments

Comments
 (0)