From 1645d7abe11cd3af4d6585caafae00fe64fcef8d Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Tue, 7 Nov 2023 20:03:17 +0100 Subject: [PATCH] website-build: build.sh: Use bash. Without that fix, using shellcheck on this file results in several warning like this one: In website-build/build.sh line 32: echo -e "\t-h, --help" ^-- SC3037 (warning): In POSIX sh, echo flags are undefined. Signed-off-by: Denis 'GNUtoo' Carikli Acked-by: Adrien 'neox' Bourmault --- website-build/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website-build/build.sh b/website-build/build.sh index 84707a2..bef76d2 100755 --- a/website-build/build.sh +++ b/website-build/build.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Copyright (C) 2022-2023 Denis 'GNUtoo' Carikli # # This program is free software: you can redistribute it and/or modify