Skip to content

Commit

Permalink
Merge pull request #317 from LoopPerfect/fix/git-fetch-again
Browse files Browse the repository at this point in the history
Fix/git fetch again
  • Loading branch information
nikhedonia authored Feb 21, 2019
2 parents f03c572 + 8a67261 commit 64def99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buckaroo/Constants.fs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Buckaroo.Constants

[<Literal>]
let Version = "2.0.0"
let Version = "2.0.2"

[<Literal>]
let PackagesDirectory = "buckaroo"
Expand Down
4 changes: 2 additions & 2 deletions buckaroo/GitCli.fs
Original file line number Diff line number Diff line change
Expand Up @@ -138,13 +138,13 @@ type GitCli (console : ConsoleManager) =
|> Async.Catch
|> Async.Ignore
do!
runBash "git" ("-C " + gitDir + " fetch origin '+refs/heads/*:refs/heads/*' '+refs/tags/*:refs/tags/*'")
runBash "git" ("-C " + gitDir + " fetch origin +refs/heads/*:refs/heads/* +refs/tags/*:refs/tags/*")
|> Async.Ignore
}

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

Expand Down

0 comments on commit 64def99

Please sign in to comment.