danger / kotlin

⚠️ Stop saying "you forgot to …" in code review
MIT License
490 stars 48 forks source link

MacOS Catalina default shell change to zsh causing issue in Bitrise #243

Open firozansar opened 1 year ago

firozansar commented 1 year ago

Following line in install.sh is not working on Bitrise: echo 'export PATH=/usr/local/kotlinc/bin:$PATH' >> ~/.bash_profile which generate following error: /root/.bash_profile: No such file or directory

I think the changing .bash_profile to .zprofile will fix the issue.

gianluz commented 1 year ago

source ~/zshrc should work! I'll update the readme with this soon😎 thanks @firozansar πŸ‘πŸ‘

firozansar commented 1 year ago

source ~/zshrc should work! I'll update the readme with this soon😎 thanks @firozansar πŸ‘πŸ‘

Thanks for the update @gianluz πŸ˜„