From f9b06bd3a84e7c9a4de95bca905b92d9aaadc2fd Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 19 Aug 2018 03:59:23 +0200 Subject: [PATCH] bin/doom: fix Emacs.app patch wrapper script --- core/core-cli.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core-cli.el b/core/core-cli.el index 250508d38..94548a65a 100644 --- a/core/core-cli.el +++ b/core/core-cli.el @@ -363,7 +363,7 @@ packages and regenerates the autoloads file." (with-temp-buffer (insert "#!/usr/bin/env bash\n" "args=\"$@\"\n" - "pwd=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\"; pwd -P)\"" + "pwd=\"$(cd \"$(dirname \"${BASH_SOURCE[0]}\")\"; pwd -P)\"\n" "exec \"$SHELL\" -c \"$pwd/RunEmacs $args\"") (write-file oldbin) (chmod oldbin (file-modes newbin)))