Rename output and bump version to v0.1.0

This commit is contained in:
IamTheFij 2020-12-10 11:48:34 -05:00
parent 480936c085
commit aa260324d0
2 changed files with 5 additions and 5 deletions

View File

@ -190,7 +190,7 @@
<key>runningsubtext</key> <key>runningsubtext</key>
<string></string> <string></string>
<key>script</key> <key>script</key>
<string>./alfred-yubico-go</string> <string>./alfred-yubico-auth</string>
<key>scriptargtype</key> <key>scriptargtype</key>
<integer>1</integer> <integer>1</integer>
<key>scriptfile</key> <key>scriptfile</key>
@ -342,7 +342,7 @@
<key>escaping</key> <key>escaping</key>
<integer>102</integer> <integer>102</integer>
<key>script</key> <key>script</key>
<string>./alfred-yubico-go set-password</string> <string>./alfred-yubico-auth set-password</string>
<key>scriptargtype</key> <key>scriptargtype</key>
<integer>1</integer> <integer>1</integer>
<key>scriptfile</key> <key>scriptfile</key>
@ -455,7 +455,7 @@
</dict> </dict>
</dict> </dict>
<key>version</key> <key>version</key>
<string>0.0.1</string> <string>0.1.0</string>
<key>webaddress</key> <key>webaddress</key>
<string></string> <string></string>
</dict> </dict>

View File

@ -33,7 +33,7 @@ func init() {
func Build() error { func Build() error {
mg.Deps(cleanBuild) mg.Deps(cleanBuild)
fmt.Println("Building...") fmt.Println("Building...")
err := sh.RunWith(info.Env(), "go", "build", "-o", buildDir+"/alfred-yubico-go", ".") err := sh.RunWith(info.Env(), "go", "build", "-o", buildDir+"/alfred-yubico-auth", ".")
if err != nil { if err != nil {
return err return err
} }
@ -53,7 +53,7 @@ func Build() error {
func Run() error { func Run() error {
mg.Deps(Build) mg.Deps(Build)
fmt.Println("Running...") fmt.Println("Running...")
return sh.RunWith(info.Env(), buildDir+"/alfred-yubico-go") return sh.RunWith(info.Env(), buildDir+"/alfred-yubico-auth")
} }
// Dist packages workflow for distribution // Dist packages workflow for distribution