Skip to content

Commit 64def99

Browse files
authored
Merge pull request #317 from LoopPerfect/fix/git-fetch-again
Fix/git fetch again
2 parents f03c572 + 8a67261 commit 64def99

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

buckaroo/Constants.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Buckaroo.Constants
22

33
[<Literal>]
4-
let Version = "2.0.0"
4+
let Version = "2.0.2"
55

66
[<Literal>]
77
let PackagesDirectory = "buckaroo"

buckaroo/GitCli.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,13 +138,13 @@ type GitCli (console : ConsoleManager) =
138138
|> Async.Catch
139139
|> Async.Ignore
140140
do!
141-
runBash "git" ("-C " + gitDir + " fetch origin '+refs/heads/*:refs/heads/*' '+refs/tags/*:refs/tags/*'")
141+
runBash "git" ("-C " + gitDir + " fetch origin +refs/heads/*:refs/heads/* +refs/tags/*:refs/tags/*")
142142
|> Async.Ignore
143143
}
144144

145145
member this.UpdateRefs (gitDir : string) = async {
146146
do!
147-
runBash "git" ("-C " + gitDir + " fetch origin '+refs/heads/*:refs/heads/*' '+refs/tags/*:refs/tags/*'")
147+
runBash "git" ("-C " + gitDir + " fetch origin +refs/heads/*:refs/heads/* +refs/tags/*:refs/tags/*")
148148
|> Async.Ignore
149149
}
150150

0 commit comments

Comments
 (0)