Skip to content

Commit 76949ee

Browse files
authored
Fix previous commit
1 parent eaa9176 commit 76949ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Get Lilu SHA
1616
id: get-lilu-sha
1717
run: |
18-
echo "::set-output name=hash::$(git ls-remote https://github.com/acidanthera/Lilu.git HEAD | awk '{ print $1}')"
18+
echo "::set-output name=hash::$(git ls-remote https://github.com/acidanthera/Lilu.git HEAD | awk '{ print $1 }')"
1919
2020
- name: Cache Lilu
2121
id: cache-lilu
@@ -34,7 +34,7 @@ jobs:
3434
git clone --depth=1 https://github.com/acidanthera/Lilu.git
3535
cd Lilu || exit 1
3636
ln -s ../MacKernelSDK MacKernelSDK
37-
xcodebuild -configuration Debug -arch x86_64 | xcpretty exit ${PIPESTATUS[0]}
37+
xcodebuild -configuration Debug -arch x86_64 | xcpretty && exit ${PIPESTATUS[0]}
3838
if [ ! -d "build/Debug/Lilu.kext" ]; then
3939
exit 1
4040
fi

0 commit comments

Comments
 (0)