Skip to content

Commit

Permalink
Fix missing space in git clone command
Browse files Browse the repository at this point in the history
Possibly should be using system_output instead...
  • Loading branch information
xrchz committed Nov 27, 2017
1 parent 28022da commit 1810502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worker.sml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ fun prepare_hol sha =
val () =
if reuse then diag ["Reusing HOL working directory built at same commit"]
else let
val status = OS.Process.system (String.concat[git_path," clone --shared ",OS.Path.concat(OS.Path.parentArc,HOLDIR_git),HOLDIR])
val status = OS.Process.system (String.concat[git_path," clone --shared ",OS.Path.concat(OS.Path.parentArc,HOLDIR_git)," ",HOLDIR])
val () = assert (OS.Process.isSuccess status) ["Failed to create working copy of HOL"]
in
OS.FileSys.chDir HOLDIR;
Expand All @@ -214,7 +214,7 @@ fun prepare_hol sha =

fun prepare_cakeml x =
let
val status = OS.Process.system (String.concat[git_path," clone --shared ",OS.Path.concat(OS.Path.parentArc,CAKEMLDIR_git),CAKEMLDIR])
val status = OS.Process.system (String.concat[git_path," clone --shared ",OS.Path.concat(OS.Path.parentArc,CAKEMLDIR_git)," ",CAKEMLDIR])
val () = assert (OS.Process.isSuccess status) ["Failed to create working copy of CakeML"]
val () = OS.FileSys.chDir CAKEMLDIR
val _ =
Expand Down

0 comments on commit 1810502

Please sign in to comment.