From 06454330484e10cb4c5aa1f61a67894403db3354 Mon Sep 17 00:00:00 2001 From: Tim H Date: Mon, 20 Nov 2017 12:15:20 +0100 Subject: [PATCH] Increase script portability Instead of presuming that bash is installed at /bin/bash, use `$PATH`. Official [bash docker container](https://hub.docker.com/_/bash/) installs bash at `/usr/local/bin` and recommends the use of `env` --- scripts/get | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/get b/scripts/get index 88a6fa1a7..d900ab2c2 100755 --- a/scripts/get +++ b/scripts/get @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright 2016 The Kubernetes Authors All rights reserved. #