diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-08-17 12:24:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-17 12:24:58 +0200 |
commit | 47108e2e093bae318773998a18f83d0504a402e0 (patch) | |
tree | 30b4052dc8b72c65d6407300685855f64e56015e /docs/remote-docs.sh | |
parent | 1db18bf10775cf0502d7e9be4946d1d29a6d8e06 (diff) | |
parent | ba9f18e2b87a1dc6b9f7fea304379c4e41aaaa85 (diff) | |
download | podman-47108e2e093bae318773998a18f83d0504a402e0.tar.gz podman-47108e2e093bae318773998a18f83d0504a402e0.tar.bz2 podman-47108e2e093bae318773998a18f83d0504a402e0.zip |
Merge pull request #7333 from openSUSE/bashify
Use `bash` binary from env instead of /bin/bash for scripts
Diffstat (limited to 'docs/remote-docs.sh')
-rwxr-xr-x | docs/remote-docs.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/remote-docs.sh b/docs/remote-docs.sh index 4774b94a3..6d520fae6 100755 --- a/docs/remote-docs.sh +++ b/docs/remote-docs.sh @@ -1,5 +1,6 @@ -#!/bin/bash -e +#!/usr/bin/env bash # Assemble remote man pages for darwin or windows from markdown files +set -e PLATFORM=$1 ## linux, windows or darwin TARGET=${2} ## where to output files |