diff options
author | EuAndreh <eu@euandre.org> | 2023-03-30 15:39:40 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-30 15:39:40 -0300 |
commit | 1931c36d6db7d08bf28c3fef8d9a67b8221d453f (patch) | |
tree | 5f74d85bb1abad4245427664e2202238a0fd461b /src/infrastructure/config | |
parent | conf.env: Separate $HTML_OUTDIR into $HTML_OUTDIR_{OUT,CI} (diff) | |
download | toph-1931c36d6db7d08bf28c3fef8d9a67b8221d453f.tar.gz toph-1931c36d6db7d08bf28c3fef8d9a67b8221d453f.tar.xz |
reconfigure: Stop deleting CI directory again
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show 1931c36d6db7d08bf28c3fef8d9a67b8221d453f
git notes --ref=refs/notes/ci-data show 1931c36d6db7d08bf28c3fef8d9a67b8221d453f
Exit status: 1
Duration: 17
Diffstat (limited to 'src/infrastructure/config')
-rw-r--r-- | src/infrastructure/config/conf.env | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/infrastructure/config/conf.env b/src/infrastructure/config/conf.env index 04af0c4..7a75a1a 100644 --- a/src/infrastructure/config/conf.env +++ b/src/infrastructure/config/conf.env @@ -4,9 +4,10 @@ NAME='servers' TLD='euandre.org' RSYNC_ACCT='zh3051@zh3051' OUT_SUFFIX="s/$NAME" -HTML_OUTDIR_TOP="/srv/www/$OUT_SUFFIX" -HTML_OUTDIR_CI="$HTML_OUTDIR_TOP/ci" +CI_SUFFIX="ci" +HTML_OUTDIR_TOP="/srv/www/$OUT_SUFFIX" +HTML_OUTDIR_CI="$HTML_OUTDIR_TOP/$CI_SUFFIX" RSYNC_ADDR="$RSYNC_ACCT.rsync.net" HOMEPAGE="https://$TLD/$OUT_SUFFIX/" CGIT_URL="https://$TLD/git/$NAME/commit/?id=" |