* modify release notes / scripts for separate medley maiko releases * Tweak release notes * more edits release notes
14 lines
203 B
Bash
Executable File
14 lines
203 B
Bash
Executable File
#!/bin/sh
|
|
|
|
export MEDLEYDIR=`pwd`
|
|
|
|
if [ ! -x run-medley ] ; then
|
|
echo run from MEDLEYDIR
|
|
exit 1
|
|
fi
|
|
|
|
./scripts/loadup-all.sh && \
|
|
./scripts/copy-all.sh && \
|
|
./scripts/release-medley.sh
|
|
|