Skip to content

Commit

Permalink
chore: fix version command
Browse files Browse the repository at this point in the history
  • Loading branch information
adikari committed Oct 3, 2022
1 parent 1d6dbb9 commit 272e2f6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 55 deletions.
52 changes: 0 additions & 52 deletions Formula/safebox.rb

This file was deleted.

8 changes: 5 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package main

import "github.com/adikari/safebox/v2/cmd"
import (
"github.com/adikari/safebox/v2/cmd"
)

var (
Version = "dev"
version = "dev"
)

func main() {
cmd.Execute(Version)
cmd.Execute(version)
}

0 comments on commit 272e2f6

Please sign in to comment.