Skip to content

Commit

Permalink
fix: walletd manually set initial version to beta
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfreska committed Jul 10, 2024
1 parent 4095c36 commit d11bb66
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/pretty-parents-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'walletd': minor
---

The desktop app is now running with daemon v0.8.0-beta.1.
2 changes: 1 addition & 1 deletion walletd/daemon/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.0
v0.8.0-beta.1
9 changes: 9 additions & 0 deletions walletd/scripts/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ if (auto) {
}
}

const valid = auto || (goos && goarch)

if (!valid) {
console.error(
'Script requires either --auto or --goos=<goos> --goarch=<goarch>'
)
process.exit(1)
}

downloadRelease()

async function downloadRelease(): Promise<void> {
Expand Down

0 comments on commit d11bb66

Please sign in to comment.