From 89cb4a664dd90700656b5512ad111d8072119a07 Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Tue, 4 Jul 2023 23:19:39 -0300 Subject: [PATCH] Remove bin/ --- bin/check-dependencies | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 bin/check-dependencies diff --git a/bin/check-dependencies b/bin/check-dependencies deleted file mode 100755 index 0bf0401..0000000 --- a/bin/check-dependencies +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh - -find_dep() { - dep=$1 - which $dep > /dev/null 2>&1 - if [ $? -eq 0 ]; then - echo found: $dep - else - echo error: $dep is required, but not installed - fi -} - -find_dep ruby -find_dep bundle -find_dep node -find_dep npm -find_dep nginx -find_dep doas