Skip to content

Commit

Permalink
CI macos: fail if DELTA not found
Browse files Browse the repository at this point in the history
Fail if DELTACAST SDK was not found (actually remove check for its
presence) if $SDK_URL is set.
  • Loading branch information
MartinPulec committed Oct 24, 2024
1 parent d33d74f commit 4b55641
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/macOS/install_others.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ install_ximea() {(
)}

install_deltacast() {
if [ ! -f "$SDK_NONFREE_PATH/$DELTA_MAC_ARCHIVE" ]; then
if [ ! "${SDK_URL-}" ]; then
return
fi
unzip "$SDK_NONFREE_PATH/$DELTA_MAC_ARCHIVE"
Expand Down

0 comments on commit 4b55641

Please sign in to comment.