Mercurial Hosting > editor
comparison dev.sh @ 71:99ebb6176d2f
better build
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Thu, 12 Jun 2025 17:08:31 -0600 |
parents | 1c68552e8ac2 |
children | 43e07db3736b |
comparison
equal
deleted
inserted
replaced
70:f4e393a13d59 | 71:99ebb6176d2f |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 # for development | 2 # for development |
3 | 3 |
4 EDITOR_HOME=`dirname $0` | 4 EDITOR_HOME=`dirname $0` |
5 | 5 |
6 export DICTIONARIES=$EDITOR_HOME/dictionaries/ | 6 DICTIONARIES="$EDITOR_HOME/dictionaries/" |
7 | 7 |
8 . luan string: | 8 . luan string: |
9 CLASSPATH=$CLASSPATH:$EDITOR_HOME/lib/jortho.jar:$EDITOR_HOME/src | 9 CLASSPATH=$CLASSPATH:$EDITOR_HOME/lib/jortho.jar:$EDITOR_HOME/src |
10 | 10 |
11 mkdir -p ~/.luan_editor | 11 mkdir -p ~/.luan_editor |
12 | 12 |
13 set +m | 13 set +m |
14 | 14 |
15 java -Dport=56588 -Xdock:name="Luan Editor dev" -classpath $CLASSPATH luan.Luan classpath:luan_editor/editor.luan "$@" 2>&1 | grep --line-buffered -v 'NSRemoteView\|NSSavePanel' | tee err | 15 java -Dport=56588 -Ddictionaries="$DICTIONARIES" -Xdock:name="Luan Editor dev" -classpath $CLASSPATH luan.Luan classpath:luan_editor/editor.luan "$@" 2>&1 | grep --line-buffered -v 'NSRemoteView\|NSSavePanel' | tee err |