Rename output and bump version to v0.1.0
This commit is contained in:
parent
480936c085
commit
aa260324d0
@ -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>
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user