mirror of
https://github.com/stackbuilders/hapistrano.git
synced 2024-11-27 12:13:41 +03:00
Fix the problem with fetching not updating repos (#61)
This commit is contained in:
parent
4a64328bf0
commit
ff938a3c71
@ -1,3 +1,7 @@
|
|||||||
|
## 0.3.1.0
|
||||||
|
|
||||||
|
* Fixed a bug with repos not being fetched properly.
|
||||||
|
|
||||||
## 0.3.0.1
|
## 0.3.0.1
|
||||||
|
|
||||||
* Reduced verbosity of some commands to make reading logs easier.
|
* Reduced verbosity of some commands to make reading logs easier.
|
||||||
|
@ -226,7 +226,8 @@ instance Command GitFetch where
|
|||||||
type Result GitFetch = ()
|
type Result GitFetch = ()
|
||||||
renderCommand (GitFetch remote) = formatCmd "git"
|
renderCommand (GitFetch remote) = formatCmd "git"
|
||||||
[ Just "fetch"
|
[ Just "fetch"
|
||||||
, Just remote ]
|
, Just remote
|
||||||
|
, Just "+refs/heads/*:refs/heads/*" ]
|
||||||
parseResult Proxy _ = ()
|
parseResult Proxy _ = ()
|
||||||
|
|
||||||
-- | Git reset.
|
-- | Git reset.
|
||||||
|
Loading…
Reference in New Issue
Block a user