Skip to content

Commit

Permalink
Merge pull request NixOS#42129 from timbertson/fetchsubmodules
Browse files Browse the repository at this point in the history
nix-prefetch-git: fix output `fetchSubmodules` property
  • Loading branch information
matthewbauer authored Jun 17, 2018
2 parents 045686f + c545493 commit 176380d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/build-support/fetchgit/nix-prefetch-git
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ print_results() {
"rev": "$(json_escape "$fullRev")",
"date": "$(json_escape "$commitDateStrict8601")",
"$(json_escape "$hashType")": "$(json_escape "$hash")",
"fetchSubmodules": $([[ -n "fetchSubmodules" ]] && echo true || echo false)
"fetchSubmodules": $([[ -n "$fetchSubmodules" ]] && echo true || echo false)
}
EOF
fi
Expand Down

0 comments on commit 176380d

Please sign in to comment.