Skip to content

Commit

Permalink
Merge pull request #60 from dominikschulz/fix
Browse files Browse the repository at this point in the history
[bugfix] Replace empty lines in the package description
  • Loading branch information
dominikschulz authored Dec 1, 2023
2 parents 3874101 + bf701c6 commit 79ca971
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,14 +64,14 @@ nfpms:
maintainer: "Gopass Authors <gopass@gopass.pw>"
description: |-
gopass password manager - full featured CLI replacement for pass, designed for teams.
.
gopass is a simple but powerful password manager for your terminal. It is a
Pass implementation in Go that can be used as a drop in replacement.
.
Every secret lives inside of a gpg (or: age) encrypted textfile. These secrets
can be organized into meaninful hierachies and are by default versioned using
git.
.
This package contains the summon provider.
license: MIT
formats:
Expand Down
2 changes: 1 addition & 1 deletion summon-provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ func TestSummonProviderOutputsOnlySecret(t *testing.T) { //nolint:paralleltest
Stdout = os.Stdout
}()

assert.NoError(t, act.Get(gptest.CliCtx(ctx, t, "foo")))
require.NoError(t, act.Get(gptest.CliCtx(ctx, t, "foo")))
assert.Equal(t, "bar\n", buf.String())
}

0 comments on commit 79ca971

Please sign in to comment.