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

View File

@ -33,7 +33,7 @@ func init() {
func Build() error {
mg.Deps(cleanBuild)
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 {
return err
}
@ -53,7 +53,7 @@ func Build() error {
func Run() error {
mg.Deps(Build)
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