1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #3707 from bkcsoft/fix-bash-hashbangs

Update bash shebangs to use "/usr/bin/env bash" for increased portability
This commit is contained in:
Tianon Gravi 2014-01-21 17:30:52 -08:00
commit 572002a715
14 changed files with 14 additions and 14 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Generate a minimal filesystem for archlinux and load it into the local
# docker as "archlinux"
# requires root

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Generate a very minimal filesystem based on busybox-static,
# and load it into the local docker under the name "busybox".

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
variant='minbase'

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
repo="$1"

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Generate a very minimal filesystem based on busybox-static,
# and load it into the local docker under the name "docker-ut".

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Setup of buildbot configuration. Package installation is being done by
# Vagrantfile

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -x
# Generate a random string of $1 characters

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -x
COMMIT=${1-HEAD}

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Variables AWS_ACCESS_KEY, AWS_SECRET_KEY and PG_PASSPHRASE are decoded
# from /root/release_credentials.json

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -x

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
# This script builds various binary artifacts from a checkout of the docker

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
# This script looks for bundles built by make.sh, and releases them on a

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
## Run this script from the root of the docker repository
## to query project stats useful to the maintainers.

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e
cd "$(dirname "$BASH_SOURCE")/.."