diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-02 22:28:23 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-11-02 23:12:27 +0100 |
commit | 281cbbd6cd8ecfc3d5c1a365ae01f2e49ad25f24 (patch) | |
tree | 9bf3e352b97c7d3742c94b31d7d2e6886dc001b1 /update-conf.in | |
parent | 07c02f672a5708e4dcd9ed9aa3935840916f4c6e (diff) | |
download | alpine-conf-281cbbd6cd8ecfc3d5c1a365ae01f2e49ad25f24.zip |
indent heredocs and replace echos with heredoc where appropriate
Diffstat (limited to 'update-conf.in')
-rw-r--r-- | update-conf.in | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/update-conf.in b/update-conf.in index 4ee1a01..fd03afa 100644 --- a/update-conf.in +++ b/update-conf.in @@ -11,16 +11,16 @@ init_tmpdir TMPD LBUCACHE="$TMPD/lbucache" usage() { - cat >&2 << __EOF__ -$PROGRAM $VERSION -Usage: $PROGRAM [-a|--all] [-i|--initd] [-l|--list] [-h|--help] -Options: - -a, --all Select all updated files - -i, --initd Use all new init.d scripts - -l, --list List updated files - -h, --help Show this help - -__EOF__ + cat >&2 <<-__EOF__ + $PROGRAM $VERSION + Usage: $PROGRAM [-a|--all] [-i|--initd] [-l|--list] [-h|--help] + Options: + -a, --all Select all updated files + -i, --initd Use all new init.d scripts + -l, --list List updated files + -h, --help Show this help + + __EOF__ } |