From aa260324d0b422f56575208751e15cba8f391557 Mon Sep 17 00:00:00 2001 From: Ian Fijolek Date: Thu, 10 Dec 2020 11:48:34 -0500 Subject: [PATCH] Rename output and bump version to v0.1.0 --- info.plist | 6 +++--- magefile.go | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/info.plist b/info.plist index aa3f73a..243344a 100644 --- a/info.plist +++ b/info.plist @@ -190,7 +190,7 @@ runningsubtext script - ./alfred-yubico-go + ./alfred-yubico-auth scriptargtype 1 scriptfile @@ -342,7 +342,7 @@ escaping 102 script - ./alfred-yubico-go set-password + ./alfred-yubico-auth set-password scriptargtype 1 scriptfile @@ -455,7 +455,7 @@ version - 0.0.1 + 0.1.0 webaddress diff --git a/magefile.go b/magefile.go index 0dae748..3780ca4 100644 --- a/magefile.go +++ b/magefile.go @@ -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