summaryrefslogtreecommitdiff
path: root/share/hydra/init
diff options
context:
space:
mode:
Diffstat (limited to 'share/hydra/init')
-rwxr-xr-xshare/hydra/init36
1 files changed, 20 insertions, 16 deletions
diff --git a/share/hydra/init b/share/hydra/init
index ad2f065..dbc2414 100755
--- a/share/hydra/init
+++ b/share/hydra/init
@@ -47,24 +47,28 @@ if [ ! -z "$REMOTE" ]; then
echo "Using $REMOTE as private gitolite address."
echo "PRIVATE_REPOS=$REMOTE" >> $PREFERENCES
else
- # TODO: setup remotes and README content
# No remote was given, so we assume this is a shiny new hydra!
- mkdir $BASEDIR/{config,doc}
- (
- cd $BASEDIR/config
- touch README.md
- git init
- git add .
- git commit -m "Initial import"
- )
+ if [ ! -d "$BASEDIR/config" ]; then
+ mkdir -p "$BASEDIR/config"
+ (
+ cd $BASEDIR/config
+ echo "Hydra $HYDRA config repository" > README.md
+ git init
+ git add .
+ git commit -m "Initial import"
+ )
+ fi
- (
- cd $BASEDIR/doc
- touch README.md
- git init
- git add .
- git commit -m "Initial import"
- )
+ if [ ! -d "$BASEDIR/doc" ]; then
+ mkdir -p "$BASEDIR/doc"
+ (
+ cd $BASEDIR/doc
+ echo "Use this repository for notes about Hydra $HYDRA" > README.md
+ git init
+ git add .
+ git commit -m "Initial import"
+ )
+ fi
fi
# Sync repositories