aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-16 21:04:42 -0400
committerGravatar mitchell <70453897+orbitalquark@users.noreply.github.com>2020-09-16 21:04:42 -0400
commitf9fa751f290e0f6baa997c1e76d552b2947a965f (patch)
tree47156e8078bcc722215317ed4b6840d254e4c190 /scripts
parentad79b76fbf6d3752035db715290487966d1e5132 (diff)
No need for "-e" in simple sed invocations.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/osx/textadept_osx2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/osx/textadept_osx b/scripts/osx/textadept_osx
index 78a09679..0179923f 100755
--- a/scripts/osx/textadept_osx
+++ b/scripts/osx/textadept_osx
@@ -16,7 +16,7 @@ export PANGO_SYSCONFDIR="$bundle_res/etc"
export CHARSETALIASDIR="$bundle_res/lib"
# Strip out the argument added by macOS.
-if [ x`echo "x$1" | sed -e "s/^x-psn_.*//"` == x ]; then shift 1; fi
+if [ x`echo "x$1" | sed "s/^x-psn_.*//"` == x ]; then shift 1; fi
# Source '~/.textadept/osx_env.sh' to set variables like $PATH when opening
# Textadept.app from the Dock or the Finder.