From 67c2869ec6985ac9feadfc00ad9470205b708390 Mon Sep 17 00:00:00 2001 From: Denton Gentry Date: Thu, 29 Jul 2021 17:24:31 -0700 Subject: [PATCH] tailscale-version.sh: always use bash We specify `set -o pipefail`, which is not implemented in dash or a number of other shells. The F-Droid builder is defaulting to a shell which does not: ``` ./version/tailscale-version.sh: 10: set: Illegal option -o pipefail ``` Updates https://github.com/tailscale/tailscale/issues/2536 Signed-off-by: Denton Gentry --- version/tailscale-version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/tailscale-version.sh b/version/tailscale-version.sh index 9f1975d..6412235 100755 --- a/version/tailscale-version.sh +++ b/version/tailscale-version.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/usr/bin/env bash # Copyright (c) 2020 Tailscale Inc & AUTHORS All rights reserved. # Use of this source code is governed by a BSD-style