We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
@josushell 님 제보 :) m1에서 SwiftLint가 설치되어 있는데도 동작 안함.
인텔맥에서는 바로 SwiftLint 설치 경로를 찾기때문에 스크립트 정상 동작 함.
if which swiftlint >/dev/null; then swiftlint else echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" fi
m1은 brew path가 별도로 설정되어있어서 직접 경로를 설정해 주어야 함.
if test -d "/opt/homebrew/bin/"; then PATH="/opt/homebrew/bin/:${PATH}" fi export PATH //...
The text was updated successfully, but these errors were encountered:
josushell
No branches or pull requests
이슈
@josushell 님 제보 :)
m1에서 SwiftLint가 설치되어 있는데도 동작 안함.
해결 방법
인텔맥에서는 바로 SwiftLint 설치 경로를 찾기때문에 스크립트 정상 동작 함.
m1은 brew path가 별도로 설정되어있어서 직접 경로를 설정해 주어야 함.
개선 방향
The text was updated successfully, but these errors were encountered: