From dae80f0ca6a91936be562823e28c2e605a6bab27 Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Sun, 20 Feb 2011 01:57:05 +0100 Subject: [PATCH 1/1] make output a bit nicer and fix a typo --- maketheme | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/maketheme b/maketheme index 4983976d..f9295a9b 100755 --- a/maketheme +++ b/maketheme @@ -26,24 +26,24 @@ THEME_DIR=$SCRIPT_DIR/$THEME_NAME/ WORK_DIR=$SCRIPT_DIR/$THEME_NAME.tmp/ XPI_FILE=$SCRIPT_DIR/$THEME_NAME.xpi -echo ensuring a clean work directory... +echo "Ensuring a clean work directory..." if [ -e $WORK_DIR ] ; then rm -rf $WORK_DIR/* fi mkdir -p $WORK_DIR/chrome -echo copying theme files... +echo "Copying theme files..." cp -a $THEME_DIR/* $WORK_DIR/ cd $WORK_DIR -echo removing x-* file not intended for shipping... +echo "Removing x-* files not intended for shipping..." rm -rf x-* -echo creating new xpi file... +echo "Creating new xpi file..." if [ -e $XPI_FILE ] ; then rm $XPI_FILE fi zip -rX9Dq $XPI_FILE * -echo cleaning work directory... +echo "Cleaning work directory..." rm -rf $WORK_DIR -- 2.35.3