Mercurial Hosting > editor
changeset 72:7db13b68ab1b default tip
finish mac
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 15 Jun 2025 15:31:05 -0600 |
parents | 99ebb6176d2f |
children | |
files | scripts/mac/launcher |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/scripts/mac/launcher Thu Jun 12 17:08:31 2025 -0600 +++ b/scripts/mac/launcher Sun Jun 15 15:31:05 2025 -0600 @@ -19,12 +19,12 @@ DIR="$(cd "$(dirname "$0")/../Resources" && pwd)" -export DICTIONARIES="$DIR/dictionaries/" +DICTIONARIES="$DIR/dictionaries/" for i in "$DIR"/jars/* ; do CLASSPATH="$CLASSPATH:$i" ; done mkdir -p ~/.luan_editor -$JAVA_BIN -Xdock:name="Luan Editor" -classpath "$CLASSPATH" luan.Luan classpath:luan_editor/editor.luan 2>&1 | grep --line-buffered -v 'NSRemoteView\|NSSavePanel' | tee ~/.luan_editor/error.log +$JAVA_BIN -Ddictionaries="$DICTIONARIES" -Xdock:name="Luan Editor" -classpath "$CLASSPATH" luan.Luan classpath:luan_editor/editor.luan 2>&1 | grep --line-buffered -v 'NSRemoteView\|NSSavePanel' >~/.luan_editor/error.log exit ${PIPESTATUS[0]}