don't delete manifest from remote on pushEmpty
I missed this in commit 3f848564ac
,
the absence of a manifest prevents fetching.
This commit is contained in:
parent
034d1a80ba
commit
4ce70533e9
1 changed files with 1 additions and 2 deletions
|
@ -381,8 +381,7 @@ pushEmpty st rmt = do
|
|||
manifest <- maybe (downloadManifestWhenPresent rmt) pure
|
||||
(manifestCache st)
|
||||
uploadManifest rmt mempty
|
||||
ok <- allM (dropKey rmt)
|
||||
(genManifestKey (Remote.uuid rmt) : inManifest manifest)
|
||||
ok <- allM (dropKey rmt) (inManifest manifest)
|
||||
return (ok, st { manifestCache = Nothing })
|
||||
|
||||
data RefSpec = RefSpec
|
||||
|
|
Loading…
Reference in a new issue