Skip to content

Commit

Permalink
Merge pull request #519 from alvasw/ci_fix_electrumx_installer_path
Browse files Browse the repository at this point in the history
GitHub Actions: Use absolute bin path (ElectrumX)
  • Loading branch information
alvasw authored Oct 24, 2022
2 parents 7ed67f2 + 4152eba commit 8d73094
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/actions/install-wallets/dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/actions/install-wallets/dist/index.js.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion .github/actions/install-wallets/src/electrumx_installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ export class ElectrumXInstaller implements Installer {
await downloadAndUnpackArchive(url, this.installDir);
}

core.addPath(this.installDir);
const absoluteInstallDirPath = path.resolve(this.installDir);
core.addPath(absoluteInstallDirPath);
}

isSupportedOs(): boolean {
Expand Down

0 comments on commit 8d73094

Please sign in to comment.