blob: 1a57cb89c215fcd6dc0891f414b09e583fa00d7a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/bin/bash
cd clientdata
rm -rf public
mkdir public
cd ..
ln -s clientdata client-data
rm -rf music
git clone --depth 1 https://gitlab.com/evol/evol-music.git music
cd tools/testxml
./xsdcheck.sh
export RES=$(cat errors.txt)
if [[ -n "${RES}" ]]; then
echo "xml check failed"
exit 1
fi
cd ../update
./createnew.sh
./create_music.sh
cp -r upload/* ../../clientdata/public
ls ../../clientdata/public
|