Skip to content

Instantly share code, notes, and snippets.

View JNRowe's full-sized avatar

James Rowe JNRowe

View GitHub Profile
@JNRowe
JNRowe / make-hubugs.sh
Created April 3, 2012 20:01 — forked from sorin-ionescu/make-hubugs.sh
Make a self contained hubugs
#!/bin/zsh
if (( ! $+commands[virtualenv] )); then
print "$0: no such command: virtualenv" >&2
return 1
fi
if (( ! $+commands[git] )); then
print "$0: no such command: git" >&2
return 1