Skip to content

Commit fe184fe

Browse files
committed
f Use absolute path for source
1 parent 418b1b1 commit fe184fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/ci-tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ set -eox pipefail
33

44
RUSTC_MINOR_VERSION=$(rustc --version | awk '{ split($2,a,"."); print a[2] }')
55
HOST_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

0 commit comments

Comments
 (0)