diff --git a/Makefile b/Makefile index 141e4dc4..ede091a4 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ endif @(cd "${cliHomebrewDir}" && \ ./release.sh \ "$(version)" \ - "${shasum -a 256 "${outputDir}/dnote_$(version)_darwin_amd64.tar.gz" | cut -d ' ' -f 1}" \ + "${shasum -a 256 "${cliOutputDir}/dnote_$(version)_darwin_amd64.tar.gz" | cut -d ' ' -f 1}" \ ) .PHONY: release-cli diff --git a/pkg/cli/cmd/login/login.go b/pkg/cli/cmd/login/login.go index 2a9dce39..f07483c4 100644 --- a/pkg/cli/cmd/login/login.go +++ b/pkg/cli/cmd/login/login.go @@ -97,6 +97,8 @@ func Do(ctx context.DnoteCtx, email, password string) error { func newRun(ctx context.DnoteCtx) infra.RunEFunc { return func(cmd *cobra.Command, args []string) error { + log.Plain("Welcome to Dnote Pro (https://dnote.io).\n") + var email, password string if err := ui.PromptInput("email", &email); err != nil { return errors.Wrap(err, "getting email input")