Skip to content

Commit 7894cad

Browse files
committed
refactor: normalize shebang lines across all scripts
Standardize to #!/usr/bin/env bash without extra spaces, replacing both #!/bin/bash and #! /usr/bin/env bash variants. Assisted-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> Signed-off-by: Miguel Martín <mmartinv@redhat.com>
1 parent 0342608 commit 7894cad

76 files changed

Lines changed: 78 additions & 77 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

tests/bootc/test-bootc-onboarding.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
2+
23
set -eox pipefail
34

45
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

tests/bootc/test-onboarding.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
set -euox pipefail
33

44
# Import util functions

tests/container/test-device-ca-api-v2.sh

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

33
set -euo pipefail
44

tests/container/test-device-ca-api.sh

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

33
set -euo pipefail
44

tests/container/test-device-ca-rendezvous-trust-v2.sh

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

33
set -euo pipefail
44

tests/container/test-device-ca-rendezvous-trust.sh

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

33
set -euo pipefail
44

tests/container/test-fsim-download-v2.sh

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

33
set -euo pipefail
44

tests/container/test-fsim-download.sh

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

33
set -euo pipefail
44

tests/container/test-fsim-upload-v2.sh

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

33
set -euo pipefail
44

tests/container/test-fsim-upload.sh

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

33
set -euo pipefail
44

0 commit comments

Comments
 (0)