From 9f8a2e6747813fbb0f3711b4d1c17b933cda9bdf Mon Sep 17 00:00:00 2001 From: Michael Price Date: Thu, 24 Oct 2019 13:40:36 -0500 Subject: [PATCH] Fix an issue with startup on Ubuntu OSes The sh binary will sometimes reference bash depending on the os, but not always. When specifically referenced, it can cause compatibilities with the script. Remove the specific sh invocation. --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f396fbb..0b935d2 100644 --- a/Makefile +++ b/Makefile @@ -112,5 +112,6 @@ clean: stop rm ## Remove all images and containers built by the project warn: ## ifndef QUIET - sh scripts/images.sh + chmod +x scripts/* + scripts/images.sh endif