stackage-update 0.1.1.1 → 0.1.1.2
raw patch · 3 files changed
+10/−2 lines, 3 files
Files
- ChangeLog.md +4/−0
- Stackage/Update.hs +5/−1
- stackage-update.cabal +1/−1
ChangeLog.md view
@@ -1,3 +1,7 @@+## 0.1.1.2++* Pass `--depth=1` to `git fetch`+ ## 0.1.1.1 * Support --version
Stackage/Update.hs view
@@ -125,7 +125,11 @@ acfDir = suDir </> name set repoExists <- doesDirectoryExist acfDir if repoExists- then runIn suDir acfDir "git" ["fetch", "--tags"] Nothing+ then runIn suDir acfDir "git"+ [ "fetch"+ , "--tags"+ , "--depth=1"+ ] Nothing else runIn suDir suDir "git" cloneArgs Nothing cabalDir <- getAppUserDataDirectory "cabal"
stackage-update.cabal view
@@ -1,5 +1,5 @@ name: stackage-update-version: 0.1.1.1+version: 0.1.1.2 synopsis: Update your package index incrementally (requires git) description: Please see <https://www.stackage.org/package/stackage-update> for description homepage: https://github.com/fpco/stackage-update