1
0
mirror of https://github.com/containers/buildah.git synced 2025-04-18 07:04:05 +03:00

fix: non-portable shebang #2812

Signed-off-by: Tuan Anh Tran <me@tuananh.org>
This commit is contained in:
Tuan Anh Tran 2020-11-21 00:52:02 +07:00
parent 570b43fd28
commit 13187f276f
3 changed files with 6 additions and 4 deletions

View File

@ -1,5 +1,6 @@
#!/usr/bin/env bash -x
#!/usr/bin/env bash
set -e
set -x
read
export PATH=`pwd`:$PATH
systemctl restart ocid

View File

@ -1,5 +1,6 @@
#!/usr/bin/env bash -x
#!/usr/bin/env bash
set -e
set -x
: " Build a temporary directory; make sure ocid is running."
export PATH=`pwd`:$PATH
d=`mktemp -d`

View File

@ -1,5 +1,5 @@
#!/usr/bin/env bash -x
#!/usr/bin/env bash
set -x
ctr1=$(buildah from "${1:-fedora}")
## Get all updates and install our minimal httpd server