26 lines
893 B
Diff
26 lines
893 B
Diff
From: Simon McVittie <smcv@debian.org>
|
|
Date: Mon, 7 Mar 2022 21:06:48 +0000
|
|
Subject: s390x-se-luks-gencpio: Fix shebang syntax
|
|
|
|
An indented `#!` is technically meaningless, although many shells will
|
|
run text files with the shell if asked to execute them.
|
|
|
|
Signed-off-by: Simon McVittie <smcv@debian.org>
|
|
Applied-upstream: 2022.3, commit:084f8913f02340831e91c4e39f6037af6ceb63e4
|
|
---
|
|
src/libostree/s390x-se-luks-gencpio | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/libostree/s390x-se-luks-gencpio b/src/libostree/s390x-se-luks-gencpio
|
|
index f0ad24e..729aff6 100755
|
|
--- a/src/libostree/s390x-se-luks-gencpio
|
|
+++ b/src/libostree/s390x-se-luks-gencpio
|
|
@@ -1,5 +1,5 @@
|
|
- #!/usr/bin/bash
|
|
- # This script creates new initramdisk with LUKS config within
|
|
+#!/usr/bin/bash
|
|
+# This script creates new initramdisk with LUKS config within
|
|
set -euo pipefail
|
|
|
|
old_initrd=$1
|