diff options
author | tv <tv@krebsco.de> | 2018-08-23 13:04:21 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-08-23 13:04:21 +0200 |
commit | 2440120c88cb2e709fa70950949768f30c5d8a0f (patch) | |
tree | 1f0ba843c4ed4c404a77fe66e96846ce2a7cd84c /pkgs/populate/default.nix | |
parent | 806b500e1e48fa096c2e26b44407e9f368f8d204 (diff) |
populate git: clone with --recurse-submodulesv1.3.1
Diffstat (limited to 'pkgs/populate/default.nix')
-rw-r--r-- | pkgs/populate/default.nix | 2 |
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 |