Mercurial Hosting > editor
comparison scripts/mac/launcher @ 66:d10058fd247d
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 06 Jun 2025 10:46:07 -0600 |
parents | a4a97e8c204f |
children |
comparison
equal
deleted
inserted
replaced
65:a4a97e8c204f | 66:d10058fd247d |
---|---|
23 | 23 |
24 for i in "$DIR"/jars/* ; do CLASSPATH="$CLASSPATH:$i" ; done | 24 for i in "$DIR"/jars/* ; do CLASSPATH="$CLASSPATH:$i" ; done |
25 | 25 |
26 mkdir -p ~/.luan_editor | 26 mkdir -p ~/.luan_editor |
27 | 27 |
28 java -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 | 28 $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 |
29 | 29 |
30 exit ${PIPESTATUS[0]} | 30 exit ${PIPESTATUS[0]} |