Skip to content

Commit

Permalink
scripts: move SPDX identifier after shebang
Browse files Browse the repository at this point in the history
The scripts should start with a shebang line to be interpreted by the
shell that was specified in the file.

Reviewed-by: Carlos Bilbao <[email protected]>
Signed-off-by: Vikram Narayanan <[email protected]>
  • Loading branch information
arkivm committed Aug 24, 2023
1 parent aa9471f commit 4ba4711
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
#!/bin/bash
# SPDX-License-Identifier: MIT

VTPM="${VTPM:-1}"
SCRIPT_DIR="$(dirname $0)"
Expand Down
2 changes: 1 addition & 1 deletion scripts/common.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
#!/bin/bash
# SPDX-License-Identifier: MIT

run_cmd()
{
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
#!/bin/bash
# SPDX-License-Identifier: MIT

[ -e /etc/os-release ] && . /etc/os-release

Expand Down
2 changes: 1 addition & 1 deletion scripts/launch-qemu.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
#!/bin/bash
# SPDX-License-Identifier: MIT

#
# user changeable parameters
Expand Down

0 comments on commit 4ba4711

Please sign in to comment.