Update Rentschler fixes: #1
parent
44195699d3
commit
89fe9bcfa2
|
|
@ -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"
|
||||
|
|
@ -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"
|
||||
Loading…
Reference in New Issue