Update Rentschler fixes: #1

master
Tim de Gruisbourne 2020-06-05 13:49:07 +02:00
parent 44195699d3
commit 89fe9bcfa2
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,15 @@
#!/bin/bash
# change to the kirby directory
cd "$(dirname "$0")/kirby"
# update to the latest version
git checkout develop
git pull
# change back into the main project folder
cd ..
# add the updated Kirby submodule and commit
git add kirby
git commit -m "Switched to Kirby-Dev Version"

15
update-kirby.sh 100644
View File

@ -0,0 +1,15 @@
#!/bin/bash
# change to the kirby directory
cd "$(dirname "$0")/kirby"
# update to the latest version
git checkout master
git pull
# change back into the main project folder
cd ..
# add the updated Kirby submodule and commit
git add kirby
git commit -m "Update Kirby"