We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaa9176 commit 76949eeCopy full SHA for 76949ee
.github/workflows/main.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Get Lilu SHA
16
id: get-lilu-sha
17
run: |
18
- echo "::set-output name=hash::$(git ls-remote https://github.com/acidanthera/Lilu.git HEAD | awk '{ print $1}')"
+ echo "::set-output name=hash::$(git ls-remote https://github.com/acidanthera/Lilu.git HEAD | awk '{ print $1 }')"
19
20
- name: Cache Lilu
21
id: cache-lilu
@@ -34,7 +34,7 @@ jobs:
34
git clone --depth=1 https://github.com/acidanthera/Lilu.git
35
cd Lilu || exit 1
36
ln -s ../MacKernelSDK MacKernelSDK
37
- xcodebuild -configuration Debug -arch x86_64 | xcpretty exit ${PIPESTATUS[0]}
+ xcodebuild -configuration Debug -arch x86_64 | xcpretty && exit ${PIPESTATUS[0]}
38
if [ ! -d "build/Debug/Lilu.kext" ]; then
39
exit 1
40
fi
0 commit comments