blob: 1ec39f88f4da60f142ff927087964738019a25b3 (
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
|
#!/bin/bash
source ./tools/gitlab-ci/init.sh
clientdata_init
rm -rf public
mkdir public
cd ..
ln -s clientdata client-data
rm -rf music
gitclone https://gitlab.com/evol/evol-music.git music
cd tools/update
./createnew.sh
./create_music.sh
cp -r upload/* ../../clientdata/public
cd ../../clientdata
gitclone https://gitlab.com/4144/pagesindexgen.git pagesindexgen
cd pagesindexgen
./pagesindexgen.py ../public
ls ../public
|