Skip to content

Commit e8e0f2c

Browse files
committed
Minor: split build-and-check-uncommitted-files.sh
1 parent ece02b4 commit e8e0f2c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
- name: xcodegen
2020
uses: xavierLowmiller/[email protected]
2121
- name: Build
22-
run: ./build-and-check-uncommitted-files.sh
22+
run: |
23+
./build-debug.sh
24+
./check-uncommitted-files.sh
2325
- name: Test
2426
run: ./run-tests.sh

build-and-check-uncommitted-files.sh check-uncommitted-files.sh

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ set -o pipefail # Any command failed in the pipe fails the whole pipe
55
# set -x # Print shell commands as they are executed (or you can try -v which is less verbose)
66

77
cd "$(dirname "$0")"
8-
./build-debug.sh
98
if [ ! -z "$(git status --porcelain)" ]; then
109
echo !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1110
echo !!! Uncommitted files detected !!!

0 commit comments

Comments
 (0)