diff options
author | EuAndreh <eu@euandre.org> | 2021-03-06 18:36:51 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-06 18:36:51 -0300 |
commit | 185869d9d2d6b568266539584e25c6a22185b8d5 (patch) | |
tree | a5e3b6765d7dfa635b7217289d9ed06d984ddd40 /aux/ci/git-pre-push.sh | |
parent | Improve wording of long-description and README.md (diff) | |
download | gistatic-185869d9d2d6b568266539584e25c6a22185b8d5.tar.gz gistatic-185869d9d2d6b568266539584e25c6a22185b8d5.tar.xz |
Update files under aux/
Diffstat (limited to 'aux/ci/git-pre-push.sh')
-rwxr-xr-x | aux/ci/git-pre-push.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/aux/ci/git-pre-push.sh b/aux/ci/git-pre-push.sh index 951d353..5546cb2 100755 --- a/aux/ci/git-pre-push.sh +++ b/aux/ci/git-pre-push.sh @@ -5,6 +5,15 @@ PACKAGE="$(basename "$PWD")" LOGS_DIR="/opt/ci/$PACKAGE/logs" REMOTE_GIT_DIR="/srv/git/$PACKAGE.git" +DESCRIPTION="$(mktemp)" +if [ -f description ] +then + cp description "$DESCRIPTION" +else + git config euandreh.description > "$DESCRIPTION" +fi + +scp "$DESCRIPTION" "git.euandreh.xyz:$REMOTE_GIT_DIR/description" ssh git.euandreh.xyz mkdir -p "$LOGS_DIR" scp aux/ci/ci-build.sh "git.euandreh.xyz:$(dirname "$LOGS_DIR")/ci-build.sh" scp aux/ci/git-post-receive.sh "git.euandreh.xyz:$REMOTE_GIT_DIR/hooks/post-receive" |