1
0
mirror of synced 2026-04-26 04:08:08 +00:00

avoid using ~ or

This commit is contained in:
Larry Masinter
2020-11-30 15:54:28 -08:00
parent e5f1166e73
commit 5584b38276
3 changed files with 4 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ inferred_medleydir=false
if [ -z "$MEDLEYDIR" ] ; then if [ -z "$MEDLEYDIR" ] ; then
# the user is usually running this script from medley, so let's try that # the user is usually running this script from medley, so let's try that
export MEDLEYDIR="`pwd`" export MEDLEYDIR=${PWD}
inferred_medleydir=true inferred_medleydir=true
fi fi
@@ -29,13 +29,14 @@ if [ ! -d "$MEDLEYDIR/loadups" ] ; then
exit 1 exit 1
fi fi
# set defaults # set defaults, overridden if suppplied explicitly
prog="lde" prog="lde"
geometry="-g 1440x900" geometry="-g 1440x900"
screensize="-sc 1440x900" screensize="-sc 1440x900"
passthrough_args="" passthrough_args=""
export LDEDESTSYSOUT=~/lisp.virtualmem export LDEDESTSYSOUT=${HOME}/lisp.virtualmem
export LDEINIT="$MEDLEYDIR/greetfiles/SIMPLE-INIT" export LDEINIT="$MEDLEYDIR/greetfiles/SIMPLE-INIT"
export LDEKBDTYPE=x export LDEKBDTYPE=x