Skip to content

Commit 9b10d05

Browse files
committed
Shell scripts: Use plain Bourne shell when Bash is not required
1 parent f291bb7 commit 9b10d05

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

build.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#! /bin/bash
1+
#!/bin/sh
2+
3+
set -e
24

35
mono .paket/paket.bootstrapper.exe
46
mono .paket/paket.exe restore

fake.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#! /bin/bash
1+
#!/bin/sh
2+
3+
set -e
24

35
mono .paket/paket.bootstrapper.exe
46
mono .paket/paket.exe restore

run-test.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#! /bin/bash
1+
#!/bin/sh
2+
3+
set -e
24

35
mono .paket/paket.bootstrapper.exe
46
mono .paket/paket.exe restore

tools/download-docs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /bin/bash
1+
#!/bin/sh
22

33
OUTPUT_DIR=../releases/rabbitmq-dotnet-client/v1.6.0
44

0 commit comments

Comments
 (0)