Spelled receive wrong lol...
This commit is contained in:
parent
2d29c2854f
commit
f55a30b48d
14
assets/post-receive
Executable file
14
assets/post-receive
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
# stagit post-receive script - developed by acidevegas (https://git.acid.vegas/stagit)
|
||||
|
||||
URL="git.acid.vegas"
|
||||
PROTO="https"
|
||||
CLONE_URL="git://$URL"
|
||||
COMMIT_LIMIT=100
|
||||
HTML_DIR="/srv/http"
|
||||
|
||||
DIR=$PWD
|
||||
REPO=$(basename $DIR .git)
|
||||
mkdir -p $HTML_DIR/$REPO && cd $HTML_DIR/$REPO && stagit -l $COMMIT_LIMIT -u "$PROTO://$URL/$REPO" $DIR
|
||||
ln -sf log.html index.html
|
||||
git --git-dir $DIR archive --format=tar.gz -o "$HTML_DIR/$REPO/$REPO.tar.gz" --prefix="$REPO/" HEAD
|
Loading…
Reference in New Issue
Block a user