* (hopefully) improve the loadup-full process
* go back to rebuilding in {CORE} and copy when done
* I think these fix the loadups problem
* perhaps unnecessary update but useful test'
* WIP: more loadup cleanup
* brute force: close open files when done loadup
* new loadups to match
17 lines
298 B
Bash
Executable File
17 lines
298 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export MEDLEYDIR=`pwd`
|
|
|
|
if [ ! -x run-medley ] ; then
|
|
echo run from MEDLEYDIR
|
|
exit 1
|
|
fi
|
|
|
|
./scripts/loadup-init.sh && \
|
|
./scripts/loadup-mid-from-init.sh && \
|
|
./scripts/loadup-lisp-from-mid.sh && \
|
|
./scripts/loadup-full.sh && \
|
|
./scripts/loadup-aux.sh
|
|
|
|
echo tada!
|