diff options
author | slycordinator <[email protected]> | 2021-12-27 16:00:56 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-27 16:00:56 +0900 |
commit | ccddb1ebdccb53b2daf1a4e30b037a3e3d38cfd6 (patch) | |
tree | 7ce55df6dcccf7afc611a49cbfc0e4d4ce5fa61c /start_dev.sh | |
parent | f13b7be3d9b0eb5eaa8e95b31b7687d784e19e2f (diff) | |
download | IronOS-ccddb1ebdccb53b2daf1a4e30b037a3e3d38cfd6.tar.gz IronOS-ccddb1ebdccb53b2daf1a4e30b037a3e3d38cfd6.zip |
Update start_dev.sh
Doesn't use anything bash-specific, so it can be /bin/sh
Diffstat (limited to 'start_dev.sh')
-rwxr-xr-x | start_dev.sh | 4 |
1 files 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 |