Skip to content

Commit ec2be16

Browse files
committed
Remove shebangs where they weren't needed and swapped out the direct use of /bin/bash for /usr/bin/env bash
1 parent e561a99 commit ec2be16

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

argument-parser.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/bin/bash
21

32
# Define the regex for matching the arguments
43
regexArgShort='^-([a-zA-Z0-9])$'

tests/default.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/bin/bash
21

32
# Define the expected arguments
43
declare -A argExpected

tests/simple.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/bin/bash
21

32
# Define the expected arguments
43
declare -A argExpected

tests/tests.sh

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

33
pass() {
44
echo -en "\033[31m\xE2\x80\xA2\033[0m"

0 commit comments

Comments
 (0)