Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Icaruk committed Jan 30, 2024
1 parent f391e33 commit 39c7469
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ vars:
tasks:
build:
cmds:
- task: setVetsion
- echo "Building version {{.VERSION}}"
- CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags="-s -w" -trimpath -tags=netgo -o {{.DIST_FOLDER}}/{{.APPNAME}}-{{.VERSION}}-windows-amd64.exe
- CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags="-s -w" -trimpath -tags=netgo -o {{.DIST_FOLDER}}/{{.APPNAME}}-{{.VERSION}}-darwin-amd64
- CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -trimpath -tags=netgo -o {{.DIST_FOLDER}}/{{.APPNAME}}-{{.VERSION}}-linux-amd64
- echo "Build complete"
- task: setVetsion
- task: checksum
silent: false

Expand Down
2 changes: 1 addition & 1 deletion cmd/updater/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/spf13/cobra"
)

const __VERSION__ string = "5.1.2"
const __VERSION__ string = "4.1.1"

var Cfg = npm.CmdFlags{
NoDev: false,
Expand Down
2 changes: 1 addition & 1 deletion utils/setVersion/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ func main() {
}
writer.Flush()

fmt.Println("Versión actualizada con éxito.")
fmt.Println("Version updated sucessfully from ", filePath)
}

0 comments on commit 39c7469

Please sign in to comment.