Skip to content

Commit

Permalink
CMAKE_BUILD_TYPE
Browse files Browse the repository at this point in the history
  • Loading branch information
ludocosmo committed Jan 18, 2021
1 parent 67cd538 commit a986dfe
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions CI/full-build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
# Halt on errors
set -eE

set -x

## SET UP ENVIRONMENT ##
PRODUCT_NAME="OBS-Studio"

Expand Down Expand Up @@ -374,8 +372,7 @@ prepare_macos_bundle() {

if [ ! -d ./rundir/${CI_BUILD_TYPE}/bin ]; then
error "No OBS build found"
ls ./rundir
return
exit 1
fi

if [ -d ./OBS-WebRTC.app ]; then rm -rf ./OBS-WebRTC.app; fi
Expand Down Expand Up @@ -420,7 +417,7 @@ prepare_macos_image() {

if [ ! -d ./OBS-WebRTC.app ]; then
error "No OBS-WebRTC.app bundle found"
return
exit 1
fi

hr "Preparing macOS installation image"
Expand Down Expand Up @@ -495,7 +492,7 @@ codesign_bundle() {

if [ ! -d ./OBS-WebRTC.app ]; then
error "No OBS-WebRTC.app bundle found"
return
exit 1
fi

hr "Code-signing application bundle"
Expand Down Expand Up @@ -536,7 +533,7 @@ codesign_image() {

if [ ! -f "${FILE_NAME}" ]; then
error "No OBS disk image found"
return
exit 1
fi

hr "Code-signing installation image"
Expand Down

0 comments on commit a986dfe

Please sign in to comment.