diff options
author | EuAndreh <eu@euandre.org> | 2023-04-03 20:26:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-03 20:26:50 -0300 |
commit | 2aac6c3946670cacd254f8f7a68249e831771f5f (patch) | |
tree | 8fc46b9b94a07a3fc437b29662e313c15a1e18f4 /share/aux-repo/aux/ci/git-pre-push.sh | |
parent | bin/aux: Build repository db from filesystem instead of variable in the program (diff) | |
download | dotfiles-2aac6c3946670cacd254f8f7a68249e831771f5f.tar.gz dotfiles-2aac6c3946670cacd254f8f7a68249e831771f5f.tar.xz |
share/aux/: Update aux db for new declarative format
Diffstat (limited to 'share/aux-repo/aux/ci/git-pre-push.sh')
-rwxr-xr-x | share/aux-repo/aux/ci/git-pre-push.sh | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/share/aux-repo/aux/ci/git-pre-push.sh b/share/aux-repo/aux/ci/git-pre-push.sh deleted file mode 100755 index 9883769..0000000 --- a/share/aux-repo/aux/ci/git-pre-push.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -set -eux - -TLD="$(cat aux/tld.txt)" -. aux/lib.sh - -PROJECT="$(basename "$PWD")" -LOGS_DIR="/opt/www/$TLD/git/ci/$PROJECT/logs" -REMOTE_GIT_DIR="/opt/www/$TLD/git/repos/$PROJECT.git" - -DESCRIPTION="$(mkstemp)" -if [ -f description ] -then - cp description "$DESCRIPTION" -else - git config euandreh.description > "$DESCRIPTION" -fi - -scp "$DESCRIPTION" "$TLD:$REMOTE_GIT_DIR/description" -ssh "$TLD" mkdir -p "$LOGS_DIR" -scp aux/ci/ci-build.sh "$TLD:$(dirname "$LOGS_DIR")/ci-build.sh" -scp aux/ci/git-post-receive.sh "$TLD:$REMOTE_GIT_DIR/hooks/post-receive" |