packages feed

gh 0.1.0.1 → 0.2.0.0

raw patch · 3 files changed

+6/−2 lines, 3 files

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Changelog for `gh` +## 0.2++- Fix `-f` option+ ## 0.1.0.1  - Initial release
gh.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           gh-version:        0.1.0.1+version:        0.2.0.0 synopsis:       Haskell bindings for gh CLI description:    A standalone library for gh CLI operations category:       System
src/GH/Signoff.hs view
@@ -28,4 +28,4 @@ -} create :: Force -> String -> CreateProcess create force name =-  proc ghSignoffBin $ "create" : (["--force" | force == Force] <> [name])+  proc ghSignoffBin $ "create" : (["-f" | force == Force] <> [name])