Skip to content

Commit

Permalink
Add PyCharm script
Browse files Browse the repository at this point in the history
  • Loading branch information
jfmercer committed Feb 21, 2024
1 parent 6178b8c commit ec013aa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions bin/pycharm
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/usr/bin/env bash

if [ -d "$HOME/Applications/PyCharm.app" ]; then
open -na "$HOME/Applications/PyCharm.app" --args "$@"
elif [ -d "/Applications/PyCharm.app" ]; then
open -na "/Applications/PyCharm.app" --args "$@"
else
echo "PyCharm cannot be found."
fi

0 comments on commit ec013aa

Please sign in to comment.