diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-10-21 11:00:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-21 11:00:33 +0200 |
commit | d1c6e2eaed90891fc8e187f147af224b352662c8 (patch) | |
tree | 982bd663d60b22b14f719af03cd459e5ee3b3ed4 /scripts/prebuild.sh | |
parent | 72549ed7b81fc01445fecdb7889bab4cf2a1590f (diff) | |
parent | 07ac4a05a3e02c95ba9482f94f19589b8ab7fd3c (diff) | |
download | puszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.tar.gz puszcza-d1c6e2eaed90891fc8e187f147af224b352662c8.zip |
Merge pull request #3 from 19pdh/kronika
Kronika
Diffstat (limited to 'scripts/prebuild.sh')
-rwxr-xr-x | scripts/prebuild.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/prebuild.sh b/scripts/prebuild.sh new file mode 100755 index 0000000..937bf5f --- /dev/null +++ b/scripts/prebuild.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +set -x +set -eou pipefail + +if [ -d ./content ]; then + cd content + git pull + cd .. +else + git clone https://github.com/19pdh/kronika content +fi |