-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pulls/mac support #248
Pulls/mac support #248
Conversation
Take two because last time I accidentally swapped the XCode project files
You need to use `xattr -cr path/to/v3-mac.zip` or `xattr -cr path/to/RSDKv3.app` for this to work
.github/workflows/build.yml
Outdated
- name: Zip the app ourselves (Important step to retain symlinks) | ||
run: | | ||
cd ./build/Applications/ | ||
zip -r RSDKv3.zip ./RSDKv3.app/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since xattr -cr RSDKv3.app
is required for anyone to run the decomp on their machine, you could add a simple README in the zip file:
echo 'Install the .app file and run "xattr -cr /Applications/RSDKv3.app" in the terminal' > README.txt
And perhaps add this instruction somewhere in the build guide?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That I can do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes that's perfect, only missing this info in the build guide.
#246 #247
You know the drill.