Skip to content

Instantly share code, notes, and snippets.

@cristibalan
Created February 4, 2009 12:58
Show Gist options
  • Save cristibalan/58085 to your computer and use it in GitHub Desktop.
Save cristibalan/58085 to your computer and use it in GitHub Desktop.
#!/bin/sh
# braid plugin install
# usage: braidpi git://github.com/moo/boo.git
PLUGIN=$1
braid add -p "$PLUGIN" && ruby "vendor/plugins/`basename -s .git $PLUGIN`/install.rb"
#!/bin/sh
# braid plugin uninstall
# usage: braidpu vendor/plugins/blah
PLUGIN=$1
braid rm "$PLUGIN" && ruby "$PLUGIN/uninstall.rb"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment