Skip to content

Commit

Permalink
Avoid --no-tags option
Browse files Browse the repository at this point in the history
We don't use tags anyway, so it's not making a difference, and is only
supported by relatively new git.
  • Loading branch information
xrchz committed Nov 28, 2017
1 parent a503ecb commit 11694c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker.sml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ in
else
let
val () = diag [dir," does not exist: will clone"]
val status = OS.Process.system (String.concat[git_path," clone --bare --no-tags ",options,remote," ",dir])
val status = OS.Process.system (String.concat[git_path," clone --bare ",options,remote," ",dir])
in
assert (OS.Process.isSuccess status) ["git clone failed for ",dir]
end
Expand Down

0 comments on commit 11694c3

Please sign in to comment.