From ccddb1ebdccb53b2daf1a4e30b037a3e3d38cfd6 Mon Sep 17 00:00:00 2001 From: slycordinator <68940237+slycordinator@users.noreply.github.com> Date: Mon, 27 Dec 2021 16:00:56 +0900 Subject: [PATCH] Update start_dev.sh Doesn't use anything bash-specific, so it can be /bin/sh --- start_dev.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start_dev.sh b/start_dev.sh index 8f7bebc9..ef95947f 100755 --- a/start_dev.sh +++ b/start_dev.sh @@ -1,2 +1,2 @@ -#!/usr/bin/env bash -docker-compose run --rm builder \ No newline at end of file +#!/bin/sh +docker-compose run --rm builder