summaryrefslogtreecommitdiff
path: root/.tools/copy.sh
blob: 53ce3f8324f95be75b8da42b3287299cec361afa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
DEST="../htdocs/spheres/"
mkdir -p $DEST
echo "Copying web files to $DEST (the folder will be created if needed)"
cp quests.json $DEST
cp story.json $DEST
cp units.json $DEST
cp version.txt $DEST
#cp certificate.pem $DEST
cp news.json $DEST
cp bar.json $DEST
cp world.json $DEST
cp summons.json $DEST
echo "Done! Move them to your webserver folder"