File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ set -eox pipefail
33
44RUSTC_MINOR_VERSION=$( rustc --version | awk ' { split($2,a,"."); print a[2] }' )
55HOST_PLATFORM=" $( rustc --version --verbose | grep " host:" | awk ' { print $2 }' ) "
6+ SELF_DIR=$( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd )
67
78# Some crates require pinning to meet our MSRV even for our downstream users,
89# which we do here.
@@ -47,7 +48,7 @@ if [[ "$HOST_PLATFORM" != *windows* ]]; then
4748 echo -e " \n\nBuilding and testing Transaction Sync Clients with features"
4849 pushd lightning-transaction-sync
4950
50- source " ../ci /download_bitcoind_electrs.sh"
51+ source " $SELF_DIR /download_bitcoind_electrs.sh"
5152
5253 cargo test --verbose --color always --features esplora-blocking
5354 cargo check --verbose --color always --features esplora-blocking
You can’t perform that action at this time.
0 commit comments