Skip to content

Commit

Permalink
Fix previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
williambj1 committed May 30, 2022
1 parent eaa9176 commit 76949ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Get Lilu SHA
id: get-lilu-sha
run: |
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 }')"
- name: Cache Lilu
id: cache-lilu
Expand All @@ -34,7 +34,7 @@ jobs:
git clone --depth=1 https://github.com/acidanthera/Lilu.git
cd Lilu || exit 1
ln -s ../MacKernelSDK MacKernelSDK
xcodebuild -configuration Debug -arch x86_64 | xcpretty exit ${PIPESTATUS[0]}
xcodebuild -configuration Debug -arch x86_64 | xcpretty && exit ${PIPESTATUS[0]}
if [ ! -d "build/Debug/Lilu.kext" ]; then
exit 1
fi
Expand Down

0 comments on commit 76949ee

Please sign in to comment.