From 6dfab0ae3cb594f6d9dd4c9ed7f9615ab7e0413f Mon Sep 17 00:00:00 2001 From: slycordinator <68940237+slycordinator@users.noreply.github.com> Date: Mon, 27 Dec 2021 16:04:51 +0900 Subject: [PATCH] update build.sh Doesn't use anything bash-specific, so can be a /bin/sh script --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 10f26c0d..268abd28 100644 --- a/build.sh +++ b/build.sh @@ -1,2 +1,2 @@ -#!/usr/bin/env bash -docker-compose run --rm builder /bin/bash /build/ci/buildAll.sh \ No newline at end of file +#!/bin/sh +docker-compose run --rm builder /bin/bash /build/ci/buildAll.sh