From: Amélia Coutard-Sander <git@ameliathe1st.gay>
Date: Mon, 2 Dec 2024 10:59:37 +0000 (+0100)
Subject: Full path instead of relative
X-Git-Url: https://git.ameliathe1st.gay/?a=commitdiff_plain;h=13c18ff337c6273b0eb4baf77b9cdf9144f88a8c;p=git-over-gnunet.git

Full path instead of relative
---

diff --git a/daemon.sh b/daemon.sh
index 1b86ab0..0720812 100755
--- a/daemon.sh
+++ b/daemon.sh
@@ -16,7 +16,7 @@ name="$2"
 echo >&2 "Running $service on port \`git.$name.git-$service'."
 
 mktempfifo
-while < "$fifo_name" gnunet-cadet -o "git.$name.git-$service" | git "$service" "$name" | (cat; sleep 5) | cat > "$fifo_name"; test 130 != "$?"; do
+while < "$fifo_name" gnunet-cadet -o "git.$name.git-$service" | git "$service" "$(pwd)/$name" | (cat; sleep 5) | cat > "$fifo_name"; test 130 != "$?"; do
 	rm "$fifo_name"
 	mktempfifo
 done