i was having trouble cloning medley from windows; worked fine in WSL. This is what GitHub Desktop for windows thinks needs to be done.
15 lines
242 B
Bash
15 lines
242 B
Bash
#!/bin/sh
|
|
|
|
export MEDLEYDIR=`pwd`
|
|
|
|
if [ ! -f run-medley ] ; then
|
|
echo must run from MEDLEYDIR ;
|
|
exit 1 ;
|
|
fi
|
|
|
|
export LOADUPDIR=$MEDLEYDIR
|
|
|
|
./run-medley -greet $MEDLEYDIR/makesysout/MAKEFULLSYSOUT.LCOM $MEDLEYDIR/loadups/xlisp.sysout
|
|
|
|
|