aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2018-08-23 13:04:21 +0200
committertv <tv@krebsco.de>2018-08-23 13:04:21 +0200
commit2440120c88cb2e709fa70950949768f30c5d8a0f (patch)
tree1f0ba843c4ed4c404a77fe66e96846ce2a7cd84c
parent806b500e1e48fa096c2e26b44407e9f368f8d204 (diff)
populate git: clone with --recurse-submodulesv1.3.1
-rw-r--r--pkgs/populate/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/populate/default.nix b/pkgs/populate/default.nix
index 91dbe63..f0eb7d1 100644
--- a/pkgs/populate/default.nix
+++ b/pkgs/populate/default.nix
@@ -24,7 +24,7 @@ let
pop.git = target: git: shell' target /* sh */ ''
if ! test -e ${quote target.path}; then
- git clone ${quote git.url} ${quote target.path}
+ git clone --recurse-submodules ${quote git.url} ${quote target.path}
fi
cd ${quote target.path}
if ! url=$(git config remote.origin.url); then