Skip to content

Commit c069c73

Browse files
committed
Google Shell Style Guide: Don't use flags in shebang
- set flags in prelude.sh instead
1 parent 48d313a commit c069c73

27 files changed

+33
-30
lines changed

Android_13/10packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# BASE IMAGE Android 13
33

44
. ../prelude.sh

Android_13/20configs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# BASE IMAGE: Android 13
33

44
. ../prelude.sh

Android_13/run_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# BASE IMAGE: Android 13
33

44
. ../prelude.sh

CLI_Ubuntu/10interactive.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# Stuff that requires user interaction and cannot be done by a script yet.
33
# This script is being run first i.e. before anything else, so that all
44
# user interaction is finished as quickly as possible.

CLI_Ubuntu/20packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# The script should not require any user input and should be idempotent.
33
# TODO apt-get install linux-headers-$(uname -r) does not work in WSL
44
# TODO move the package lists to external files

CLI_Ubuntu/30source_packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# The script should not require any user input and should be idempotent.
33
# TODO apt-get install linux-headers-$(uname -r) does not work in WSL
44
# TODO move the package lists to external files

CLI_Ubuntu/40configs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# The script should not require any user input and should be idempotent.
33

44
. ../prelude.sh

CLI_Ubuntu/run_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# This script should be idempotent.
33

44
. ../prelude.sh

DistroAgnostic/10dotfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash -x
1+
#!/bin/bash
22
# The script should not require any user input and should be idempotent.
33
# BASE IMAGE: ALL
44
# Dotfiles are managed via bare git repository.

DistroAgnostic/20git_config.sh

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

33
. ../prelude.sh
44

0 commit comments

Comments
 (0)