Each step of the loadup now starts with a 'touch' to create a timestamp. At the end of the loadup, it makes sure the files needed by the next step are newer. This will catch some of the problems.
23 lines
381 B
Bash
Executable File
23 lines
381 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export MEDLEYDIR=`pwd`
|
|
|
|
if [ ! -x run-medley ] ; then
|
|
echo run from MEDLEYDIR
|
|
exit 1
|
|
fi
|
|
|
|
# set timestamp
|
|
mkdir -p ./tmp
|
|
touch ./tmp/loadup-timestamp
|
|
|
|
./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 "**** DONE ****"
|
|
|
|
|
|
|