Files
MX_Pmodule/scripts/Tools/emacs/Emacs
Achim Gsell b215524883 emacs/build
- adapted to new build system
- reviewed
2015-09-18 18:31:10 +02:00

11 lines
158 B
Bash

#!/bin/bash
declare -r OS=$(uname -s)
if [[ "${OS}" == "Darwin" ]]; then
open "${EMACS_DIR}/Emacs.app" --args "$@"
else
"${EMACS_DIR}/bin/emacs" "$@"
fi