Skip to content

Commit

Permalink
Change shell preamble fron /bin/bash to /usr/bin/sh
Browse files Browse the repository at this point in the history
In those scripts there is nothing bash specific so preamble can be
changed to POSIX sh /usr/bin/sh.

Signed-off-by: Tomasz Kłoczko <[email protected]>
  • Loading branch information
kloczek committed Oct 20, 2023
1 parent 85bce60 commit e2474b6
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion test/compile-test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/hasher-test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/kcapi-convenience.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/kcapi-dgst-test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/kcapi-enc-test-large.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/kcapi-enc-test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/kcapi-fuzz-test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/libtest.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/test-invocation.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2016 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2014 - 2022, Stephan Mueller <[email protected]>
#
Expand Down
2 changes: 1 addition & 1 deletion test/virttest.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/sh
#
# Copyright (C) 2017 - 2022, Stephan Mueller <[email protected]>
#
Expand Down

0 comments on commit e2474b6

Please sign in to comment.