commit d8edfd6d265c332678d832de12ae6d06e3d05524 parent 89c3afcf50d2a05b9ee2c091b05a8151e76560af Author: Devan Carpenter <devan@taler.net> Date: Tue, 13 Feb 2024 13:04:51 -0500 aptly: account for script paths relative to repo Diffstat:
| M | aptly/entr.sh | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/aptly/entr.sh b/aptly/entr.sh @@ -2,5 +2,5 @@ set -xo while true ; do - echo incoming/bookworm-taler-ci | entr -n -d /home/aptbuilder/aptly-publish.sh ; sleep 1 || true + echo "${HOME}/incoming/bookworm-taler-ci" | entr -n -d "${HOME}"/deployment/aptly/aptly-publish.sh ; sleep 1 || true done