Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 9f8a2e6

Browse files
committed
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.
1 parent a8de95f commit 9f8a2e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,6 @@ clean: stop rm ## Remove all images and containers built by the project
112112

113113
warn: ##
114114
ifndef QUIET
115-
sh scripts/images.sh
115+
chmod +x scripts/*
116+
scripts/images.sh
116117
endif

0 commit comments

Comments
 (0)