summaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorJiHO <jiho-sf@users.sourceforge.net>2008-02-17 21:41:07 +0000
committerjiho-sf <jiho-sf@users.sourceforge.net>2008-02-17 21:41:07 +0000
commit6255345d424e9de230007ef1b6f93b064a4436e3 (patch)
tree00b10ac1247eac9ae3884229690167f9a8985df9 /packaging
parent* [INTL: it] no more fuzzy (diff)
downloadinkscape-6255345d424e9de230007ef1b6f93b064a4436e3.tar.gz
inkscape-6255345d424e9de230007ef1b6f93b064a4436e3.zip
the option -e to echo is useless here
(bzr r4760)
Diffstat (limited to 'packaging')
-rwxr-xr-xpackaging/macosx/osx-dmg.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/packaging/macosx/osx-dmg.sh b/packaging/macosx/osx-dmg.sh
index 86e83bf06..f1ce72132 100755
--- a/packaging/macosx/osx-dmg.sh
+++ b/packaging/macosx/osx-dmg.sh
@@ -45,7 +45,7 @@ auto_open_opt=
#----------------------------------------------------------
help()
{
-echo -e "
+echo "
Create a custom dmg file to distribute Inkscape
\033[1mUSAGE\033[0m
@@ -87,13 +87,13 @@ if [ ! -e "$package" ]; then
exit 1
fi
-echo -e "\n\033[1mCREATE INKSCAPE DISK IMAGE\033[0m\n"
+echo "\n\033[1mCREATE INKSCAPE DISK IMAGE\033[0m\n"
# Create temp directory with desired contents of the release volume.
rm -rf "$tmp_dir"
mkdir "$tmp_dir"
-echo -e "\033[1mCopying files to temp directory\033[0m"
+echo "\033[1mCopying files to temp directory\033[0m"
# Inkscape itself
# copy Inkscape.app
cp -rf "$package" "$tmp_dir"/
@@ -115,7 +115,7 @@ if [ ${set_ds_store} = "false" ]; then
fi
# Create a new RW image from the temp directory.
-echo -e "\033[1mCreating a temporary disk image\033[0m"
+echo "\033[1mCreating a temporary disk image\033[0m"
rm -f "$rw_name"
/usr/bin/hdiutil create -srcfolder "$tmp_dir" -volname "$volume_name" -fs HFS+ -fsargs "-c c=64,a=16,e=16" -format UDRW "$rw_name"
@@ -165,7 +165,7 @@ fi
hdiutil detach "$DEV_NAME"
# Create the offical release image by compressing the RW one.
-echo -e "\033[1mCompressing the final disk image\033[0m"
+echo "\033[1mCompressing the final disk image\033[0m"
img_name="Inkscape.dmg"
# TODO make this a command line option
if [ -e "$img_name" ]; then