You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reporting.
Sorry, the issue is caused by the script that ExtraBuildPhase generates.
For workaround, you can customize the script as following configuration:
defaults write io.github.norio-nomura.ExtraBuildPhase shellScript -string 'if which swiftlint >/dev/null; then [ -f .swiftlint.yml ] && CONFIG="--config .swiftlint.yml" || [ -f $HOME/.swiftlint.yml ] && CONFIG="--config $HOME/.swiftlint.yml" swiftlint lint --quiet --use-script-input-files $CONFIGfiexit 0 # ignore result of swiftlint'
Running clean build is required for taking effect of the configuration.
If the user building the project doesn't have a .swiftlint.yml in their home directory, ExtraBuildPhase crashes
The text was updated successfully, but these errors were encountered: