diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_git_resource.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rebar_git_resource.erl b/src/rebar_git_resource.erl index c5031df..ac1316b 100644 --- a/src/rebar_git_resource.erl +++ b/src/rebar_git_resource.erl @@ -36,8 +36,8 @@ lock_(AppDir, {git, Url}) -> {ok, VsnString} = case os:type() of {win32, _} -> - rebar_utils:sh("git --git-dir='" ++ Dir ++ "/.git' " - "--work-tree='" ++ Dir ++ "' rev-parse --verify HEAD", + rebar_utils:sh("git --git-dir=\"" ++ Dir ++ "/.git\" " + "--work-tree=\"" ++ Dir ++ "\" rev-parse --verify HEAD", [{use_stdout, false}, {debug_abort_on_error, AbortMsg}]); _ -> rebar_utils:sh("git --git-dir='" ++ Dir ++ "/.git' rev-parse --verify HEAD", |