diff options
author | EuAndreh <eu@euandre.org> | 2021-01-27 15:55:27 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-01-27 15:58:51 -0300 |
commit | 451eed829916627e9248f1003752b43617a20ff4 (patch) | |
tree | 1799faf7932caab2f2b6fb0bccebf06601715dda /aux/ci | |
parent | Update link to "remembering" (diff) | |
download | euandre.org-451eed829916627e9248f1003752b43617a20ff4.tar.gz euandre.org-451eed829916627e9248f1003752b43617a20ff4.tar.xz |
mv build-aux/ -> aux/ and scripts/
Diffstat (limited to '')
-rwxr-xr-x | aux/ci/ci-build.sh (renamed from build-aux/ci/ci-build.sh) | 4 | ||||
-rwxr-xr-x | aux/ci/git-post-receive.sh (renamed from build-aux/ci/git-post-receive.sh) | 0 | ||||
-rwxr-xr-x | aux/ci/git-pre-push.sh (renamed from build-aux/ci/git-pre-push.sh) | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/build-aux/ci/ci-build.sh b/aux/ci/ci-build.sh index 0b792df..c891d3b 100755 --- a/build-aux/ci/ci-build.sh +++ b/aux/ci/ci-build.sh @@ -35,8 +35,8 @@ EOF git config --global user.email git@euandre.org git config --global user.name 'EuAndreh CI' - if [ -f build-aux/guix/with-container.sh ]; then - RUNNER='./build-aux/guix/with-container.sh' + if [ -f aux/guix/with-container.sh ]; then + RUNNER='./aux/guix/with-container.sh' else RUNNER='sh -c' fi diff --git a/build-aux/ci/git-post-receive.sh b/aux/ci/git-post-receive.sh index 2f6e3c0..2f6e3c0 100755 --- a/build-aux/ci/git-post-receive.sh +++ b/aux/ci/git-post-receive.sh diff --git a/build-aux/ci/git-pre-push.sh b/aux/ci/git-pre-push.sh index 2d2bcb1..30d2850 100755 --- a/build-aux/ci/git-pre-push.sh +++ b/aux/ci/git-pre-push.sh @@ -15,5 +15,5 @@ fi scp "$DESCRIPTION" "git.euandreh.xyz:$REMOTE_GIT_DIR/description" ssh git.euandreh.xyz mkdir -p "$LOGS_DIR" -scp build-aux/ci/ci-build.sh "git.euandreh.xyz:$(dirname "$LOGS_DIR")/ci-build.sh" -scp build-aux/ci/git-post-receive.sh "git.euandreh.xyz:$REMOTE_GIT_DIR/hooks/post-receive" +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" |