Created
July 13, 2016 07:12
-
-
Save Ashton-W/73896ae88336793d753e7ba47a03185d to your computer and use it in GitHub Desktop.
CocoaPods Fish Functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pi --description 'pod install' | |
if test -e Gemfile | |
command bundle exec pod install --no-repo-update | |
else | |
command pod install --no-repo-update | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function pu --description 'pod update' | |
if test -e Gemfile | |
command bundle exec pod update $argv | |
else | |
command pod update $argv | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment