Merge "Make bash shebangs through /usr/bin/env"

This commit is contained in:
Jenkins 2017-04-12 05:47:36 +00:00 committed by Gerrit Code Review
commit 31815fbab4
2 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash -ex
#!/usr/bin/env bash
# Copyright 2016 Hewlett Packard Enterprise Development Company, L.P.
#
@ -38,6 +38,8 @@
# current working directory, it will be prepended or appended to
# the generated reStructuredText plugins table respectively.
set -ex
(
declare -A plugins

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
TOOLS_PATH=${TOOLS_PATH:-$(dirname $0)/../}
VENV_PATH=${VENV_PATH:-${TOOLS_PATH}}
VENV_DIR=${VENV_DIR:-/.venv}