diff options
author | Dave Reisner <dreisner@archlinux.org> | 2012-05-30 17:04:53 +0200 |
---|---|---|
committer | Dave Reisner <dreisner@archlinux.org> | 2012-06-08 23:38:57 +0200 |
commit | e67684cb43e1ca42aa87aea8cdb4fdff093b7a6b (patch) | |
tree | 790fe26e7b21d996f7455f7b4e20ebf6c506d819 | |
parent | 4f27c475d15c64d6a884bb38580b83c297ff13f7 (diff) | |
download | mkinitcpio-e67684cb43e1ca42aa87aea8cdb4fdff093b7a6b.tar.gz mkinitcpio-e67684cb43e1ca42aa87aea8cdb4fdff093b7a6b.tar.xz |
remove redundant header comment
I've adopted the convention of specifying the shebang for the
interpreter any given install or runtime hook that a script runs under.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
-rwxr-xr-x | mkinitcpio | 9 |
1 files changed, 1 insertions, 8 deletions
@@ -1,13 +1,6 @@ #!/bin/bash -# mkinitcpio - modular tool for building an init ramfs cpio image # -# IMPORTANT: We need to keep a common base syntax here because -# some of these hooks/scripts need to run under busybox's ash - -# therefore, the following constraints should be enforced: -# variables should be quoted and bracketed "${SOMEVAR}" -# inline execution should be done with $() instead of backticks -# use -z "${var}" to test for nulls/empty strings -# in case of embedded spaces, quote all path names and string comparisons +# mkinitcpio - modular tool for building an initramfs images # declare -r version=%VERSION% |