diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2019-12-18 20:49:39 -0600 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2019-12-18 20:49:39 -0600 |
| commit | ad809242c839aba8fc13523d68cf99ea96817633 (patch) | |
| tree | 5e79ce20562a9ab6fe69c5e136cc1ff8dc60d1be | |
| parent | c4b6a01878f0f72d428a24c26153723c60f6695f (diff) | |
| download | nimterop-issue157.tar.gz nimterop-issue157.zip | |
Fix #157 - gitPull of branchissue157
| -rw-r--r-- | nimterop/build.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nimterop/build.nim b/nimterop/build.nim index bcc8b2b..5426548 100644 --- a/nimterop/build.nim +++ b/nimterop/build.nim @@ -299,7 +299,7 @@ proc gitPull*(url: string, outdir = "", plist = "", checkout = "") = if checkout.len != 0: echo "# Checking out " & checkout - discard execAction(&"cd {outdirQ} && git pull --tags origin master") + discard execAction(&"cd {outdirQ} && git fetch") discard execAction(&"cd {outdirQ} && git checkout {checkout}") else: echo "# Pulling repository" |
