From 8a47fa9512eb355e8f7cbe4b4e7d28373e706a6c Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Sat, 11 Aug 2007 21:14:53 +0000 Subject: Coding style change, use -n and -z for variable tests Signed-off-by: Aaron Griffin git-svn-id: http://projects.archlinux.org/svn/initramfs/mkinitcpio@209 880c04e9-e011-0410-abf7-b926e227c9cd --- install/base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install/base') 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 -- cgit v1.2.3-24-g4f1b