From c92cdc9d3a81ca6809a39f26c23053db6b5a4ebe Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 4 Jan 2014 11:59:16 -0200 Subject: Deploy also if ikiwiki_src does not exit --- templates/deploy.sh.erb | 37 +++++++++++++++++++++---------------- templates/refresh.sh.erb | 2 +- 2 files changed, 22 insertions(+), 17 deletions(-) diff --git a/templates/deploy.sh.erb b/templates/deploy.sh.erb index cc31401..73127da 100644 --- a/templates/deploy.sh.erb +++ b/templates/deploy.sh.erb @@ -25,26 +25,31 @@ elif [ ! -e "$CONF/$NAME.setup" ]; then exit 1 fi -# Setup source folder -mkdir -p $SITE/"$INSTANCE"_src_tmp/ -rm -rf $SITE/"$INSTANCE"_src +# Repository setup +if [ ! -d "$REPO" ]; then + # Setup source folder + mkdir -p $SITE/"$INSTANCE"_src_tmp/ + rm -rf $SITE/"$INSTANCE"_src -# Create initial page -echo "Welcome to your new wiki powered by [ikiwiki](http://ikiwiki.info)." > $SITE/"$INSTANCE"_src_tmp/index.mdwn + # Create initial page + echo "Welcome to your new wiki powered by [ikiwiki](http://ikiwiki.info)." > $SITE/"$INSTANCE"_src_tmp/index.mdwn -# Create ikiwiki repository -ikiwiki-makerepo git $SITE/"$INSTANCE"_src_tmp $REPO + # Create ikiwiki repository + ikiwiki-makerepo git $SITE/"$INSTANCE"_src_tmp $REPO +fi # Clone it again -git clone $REPO $SITE/"$INSTANCE"_src - -# Fix remotes -cd $SITE/"$INSTANCE"_src -git remote rm origin -git remote add origin $REMOTE -git config branch.master.remote origin -git config branch.master.merge refs/heads/master -cd $CWD +if [ ! -d "$SITE"/"$INSTANCE"_src ]; then + git clone $REPO $SITE/"$INSTANCE"_src + + # Fix remotes + cd $SITE/"$INSTANCE"_src + git remote rm origin + git remote add origin $REMOTE + git config branch.master.remote origin + git config branch.master.merge refs/heads/master + cd $CWD +fi # Cleanup rm -rf $SITE/"$INSTANCE"_src_tmp diff --git a/templates/refresh.sh.erb b/templates/refresh.sh.erb index 6ef0b7d..7561311 100644 --- a/templates/refresh.sh.erb +++ b/templates/refresh.sh.erb @@ -26,7 +26,7 @@ elif [ ! -e "$CONF/$NAME.setup" ]; then fi # Deploy if needed -if [ ! -d "$REPO" ]; then +if [ ! -d "$REPO" ] || [ ! -d "$SITE"/"$INSTANCE"_src ]; then ikiwiki-deploy $NAME $OWNER $GROUP fi -- cgit v1.2.3