Skip to content

Commit

Permalink
fix: removed omit parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Andrii Nasinnyk <anasinnyk@macpaw.com>
  • Loading branch information
anasinnyk committed May 21, 2020
1 parent d16ba43 commit e094bec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
language: go
go:
- 1.14.x
dist: trusty
sudo: false
env:
Expand Down
2 changes: 1 addition & 1 deletion onepassword/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func unzip(src string, dest string) error {
}

func findExistingOPClient() (string, error) {
o, err := exec.Command("op", "--version", "--raw").Output()
o, err := exec.Command("op", "--version").Output()

if err != nil {
return "", fmt.Errorf("Trouble calling: op\nOutput: %s", o)
Expand Down

0 comments on commit e094bec

Please sign in to comment.