24 lines
624 B
Bash
Executable File
24 lines
624 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo -e "\nBuilding Dreambuilder ..."
|
|
echo -e "=================================================================\n"
|
|
|
|
/home/vanessa/Minetest-related/Scripts/customize-dreambuilder-game.sh
|
|
|
|
timestamp=`date +%Y%m%d-%H%M`
|
|
echo $timestamp > /home/vanessa/Minetest-related/mods/my_mods/dreambuilder_game/build-date
|
|
|
|
echo -e "\nUpdate git repos..."
|
|
echo -e "=================================================================\n"
|
|
|
|
cd /home/vanessa/Minetest-related/mods/my_mods/dreambuilder_game
|
|
git add .
|
|
git commit -a
|
|
git push
|
|
git tag $timestamp
|
|
git push --tags
|
|
cd ~
|
|
|
|
echo -e "\nDone. Build timestamp: $timestamp \n"
|
|
|