about summary refs log tree commit diff
path: root/pkgs/applications/blockchains/nbxplorer
diff options
context:
space:
mode:
authorErik Arvstedt <erik.arvstedt@gmail.com>2021-05-04 15:04:36 +0200
committerErik Arvstedt <erik.arvstedt@gmail.com>2021-05-14 11:28:21 +0200
commit60c6153ab12229fa3d067460614131da5e67f6da (patch)
treee7ae2cd535c20259cac1abf315d832940be05c62 /pkgs/applications/blockchains/nbxplorer
parent074b608d01e60fbef9bffe0ac7e25e72d20f4866 (diff)
btcpayserver/update.sh: auto-update nbxplorer
It's now sufficient to run a single script (btcpayserver/update.sh) to
update btcpayserver. This simplifies maintenance.
nbxplorer is a strict dependency of btcpayserver.
Diffstat (limited to 'pkgs/applications/blockchains/nbxplorer')
-rwxr-xr-xpkgs/applications/blockchains/nbxplorer/util/create-deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/blockchains/nbxplorer/util/create-deps.sh b/pkgs/applications/blockchains/nbxplorer/util/create-deps.sh
index 1402d1cd1eb84..14b1687dffff1 100755
--- a/pkgs/applications/blockchains/nbxplorer/util/create-deps.sh
+++ b/pkgs/applications/blockchains/nbxplorer/util/create-deps.sh
@@ -6,7 +6,7 @@ set -euo pipefail
 # Expects $pkgSrc to contain a single .sln file.
 
 pkgSrc=$1
-depsFile=$2
+depsFile=$(realpath "$2")
 
 sln=$(cd "$pkgSrc"; find * -maxdepth 0 -name '*.sln' | head -1)
 [[ $sln ]] || { echo "No .sln file in $pkgSrc" ; exit 1; }