Skip to content

Commit

Permalink
dcrinstall: Update for dexc -> bisonw rename
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Aug 30, 2024
1 parent 2fb115c commit abac517
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmd/dcrinstall/dcrdex.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ import (
var (
dexf = []decredFiles{
{
Name: "dexcctl",
Name: "bwctl",
Config: "dexcctl.conf",
SampleMemory: dexcctlSampleConfig,
SupportsVersion: true,
},
{
Name: "dexc",
Name: "bisonw",
Config: "dexc.conf",
SampleMemory: dexcSampleConfig,
SupportsVersion: true,
Expand Down Expand Up @@ -323,7 +323,7 @@ func installDcrdexBundle() error {
// Install binaries
for k := range dexf {
src := filepath.Join(destination,
"dexc-"+tuple+"-"+manifestDcrdexVersion, dexf[k].Name)
"bisonwallet-"+tuple+"-"+manifestDcrdexVersion, dexf[k].Name)
dst := filepath.Join(destination, dexf[k].Name)
// yep, this is ferrealz
if !dexf[k].Directory && strings.HasPrefix(tuple, "windows") {
Expand Down
2 changes: 1 addition & 1 deletion cmd/dcrinstall/dcrinstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ var (

// Regexp
decredRE = regexp.MustCompile(`decred-v[[:digit:]]\.[[:digit:]]\.[[:digit:]][[:print:]]*-manifest\.txt`)
dexcRE = regexp.MustCompile(`dexc-v[[:digit:]]\.[[:digit:]]\.[[:digit:]][[:print:]]*-manifest\.txt`)
dexcRE = regexp.MustCompile(`bisonwallet-v[[:digit:]]\.[[:digit:]]\.[[:digit:]][[:print:]]*-manifest\.txt`)
dcrinstallRE = regexp.MustCompile(`dcrinstall-v[[:digit:]]\.[[:digit:]]\.[[:digit:]][[:print:]]*-manifest\.txt`)
)

Expand Down

0 comments on commit abac517

Please sign in to comment.