This file contains hidden or 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
#!/bin/bash | |
# | |
# Runs 'pod install' after performing a merge in the local repository | |
source ~/.bash_profile | |
pod install |
This file contains hidden or 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
# This function allows you to install tmbdundles cloning from git being in any folder | |
# Usage | |
# $ tmbundle https://github.com/textmate/json.tmbundle.git | |
function tmbundle { | |
if [ -n "$1" ]; then | |
dir=$(pwd) | |
cd ~/Library/Application\ Support/TextMate/Bundles/ | |
git clone $1 | |
cd $dir |
NewerOlder