diff options
author | tv <tv@nomic.retiolum> | 2013-11-14 13:38:07 +0100 |
---|---|---|
committer | tv <tv@nomic.retiolum> | 2013-11-14 13:38:07 +0100 |
commit | 78fa9ac0fa2ee8af9787b5f9ea14f6fbb0df24d1 (patch) | |
tree | cab612c3a3db1567a7b8a10cbd03d4b00350a63d /ship/lib/punani | |
parent | 0fbc23c61956c9e208217f32d6a8e233b6e0f96e (diff) |
ship punani: teach _punani_brew_has to die
Diffstat (limited to 'ship/lib/punani')
-rw-r--r-- | ship/lib/punani | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ship/lib/punani b/ship/lib/punani index dc55c256..72be0351 100644 --- a/ship/lib/punani +++ b/ship/lib/punani @@ -83,4 +83,4 @@ _punani_yum_remove(){ yum -y remove "$@" ;} _punani_yum_has() { rpm -qa --qf "%{NAME}\n"| egrep "^${1}\$" >/dev/null ;} _punani_brew_install(){ brew install "$@"; } _punani_brew_remove(){ brew remove "$@";} -_punani_brew_has(){ error "not implemented"; return 1 ;} +_punani_brew_has() { die '_punani_brew_has not implemented'; } |