summaryrefslogtreecommitdiffstats
path: root/install/base
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2007-08-11 23:14:53 +0200
committerAaron Griffin <aaron@archlinux.org>2007-08-11 23:14:53 +0200
commit8a47fa9512eb355e8f7cbe4b4e7d28373e706a6c (patch)
tree704564ae3794ae021b112d701bfa24f00577dddd /install/base
parent2b466a50d4e28f1d30df8eedfcd0bfcd565515d2 (diff)
downloadmkinitcpio-8a47fa9512eb355e8f7cbe4b4e7d28373e706a6c.tar.gz
mkinitcpio-8a47fa9512eb355e8f7cbe4b4e7d28373e706a6c.tar.xz
Coding style change, use -n and -z for variable tests
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com> git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@209 880c04e9-e011-0410-abf7-b926e227c9cd
Diffstat (limited to 'install/base')
-rw-r--r--install/base2
1 files changed, 1 insertions, 1 deletions
diff --git a/install/base b/install/base
index 01d5a04..b601eac 100644
--- a/install/base
+++ b/install/base
@@ -27,7 +27,7 @@ install ()
add_file "/lib/initcpio/init" "/init"
add_file "${CONFIG}" "/config"
- if [ "x${MESSAGE}" != "x" ]; then
+ if [ -n "${MESSAGE}" ]; then
echo -e "${MESSAGE}" > ${MESSAGEFILE}
add_file "${MESSAGEFILE}" "/message"
fi