From 96d81cecda1153d1dc2b52801a09272c8b93af88 Mon Sep 17 00:00:00 2001 From: Walter Lapchynski Date: Thu, 4 Mar 2021 13:35:31 -0800 Subject: [PATCH] added check for germinate --- update | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/update b/update index a5c6c57..24c4fff 100755 --- a/update +++ b/update @@ -1,5 +1,10 @@ #! /bin/sh +if ! which germinate >/dev/null; then + echo >&2 "Please install germinate." + exit 1 +fi + if ! which dch >/dev/null; then echo >&2 "Please install devscripts." exit 1