From f8485013323815963211349d847d10cf39b5aff5 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Wed, 4 Jan 2023 11:08:36 +0000 Subject: [PATCH] fix(plus): wrong shebang --- sh/tests/plus_test.sh | 2 +- sh/tests/solutions/plus.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sh/tests/plus_test.sh b/sh/tests/plus_test.sh index c7571923..92420e32 100644 --- a/sh/tests/plus_test.sh +++ b/sh/tests/plus_test.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash set -euo pipefail IFS=' diff --git a/sh/tests/solutions/plus.sh b/sh/tests/solutions/plus.sh index a526f7a7..12214525 100644 --- a/sh/tests/solutions/plus.sh +++ b/sh/tests/solutions/plus.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Add the two numbers result=$(expr $1 + $2)