From 63403f894dd146a92925695a854a73344d348810 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Mon, 3 Aug 2020 22:20:12 +0300 Subject: [PATCH] Fix run-in-env.sh sh options (#38520) Shebang takes only one arg, regression in f6540e30023e9f1abe7f018bc93ac4b4e2954db9 --- script/run-in-env.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/run-in-env.sh b/script/run-in-env.sh index cc4d3784693..0f531f235b6 100755 --- a/script/run-in-env.sh +++ b/script/run-in-env.sh @@ -1,4 +1,5 @@ -#!/usr/bin/env sh -eu +#!/usr/bin/env sh +set -eu # Activate pyenv and virtualenv if present, then run the specified command