summaryrefslogtreecommitdiff
path: root/inttest/tdeps1
diff options
context:
space:
mode:
Diffstat (limited to 'inttest/tdeps1')
-rw-r--r--inttest/tdeps1/a.rebar.config2
-rw-r--r--inttest/tdeps1/b.rebar.config2
-rw-r--r--inttest/tdeps1/tdeps1_rt.erl8
3 files changed, 6 insertions, 6 deletions
diff --git a/inttest/tdeps1/a.rebar.config b/inttest/tdeps1/a.rebar.config
index 01609ee..991ea5a 100644
--- a/inttest/tdeps1/a.rebar.config
+++ b/inttest/tdeps1/a.rebar.config
@@ -1 +1 @@
-{deps, [{b, "1", {hg, "../repo/b", "tip"}}]}.
+{deps, [{b, "1", {git, "../repo/b"}}]}.
diff --git a/inttest/tdeps1/b.rebar.config b/inttest/tdeps1/b.rebar.config
index 59c8987..ffbd0db 100644
--- a/inttest/tdeps1/b.rebar.config
+++ b/inttest/tdeps1/b.rebar.config
@@ -1 +1 @@
-{deps, [{c, "1", {hg, "../repo/c", "tip"}}]}.
+{deps, [{c, "1", {git, "../repo/c"}}]}.
diff --git a/inttest/tdeps1/tdeps1_rt.erl b/inttest/tdeps1/tdeps1_rt.erl
index 43184c6..9f21c81 100644
--- a/inttest/tdeps1/tdeps1_rt.erl
+++ b/inttest/tdeps1/tdeps1_rt.erl
@@ -24,11 +24,11 @@ files() ->
].
run(_Dir) ->
- %% Initialize the b/c apps as mercurial repos so that dependencies pull
+ %% Initialize the b/c apps as git repos so that dependencies pull
%% properly
- HgCmd = "/bin/sh -c \"hg init && hg add && hg commit -m 'Initial commit'\"",
- {ok, _} = retest_sh:run(HgCmd, [{dir, "repo/b"}]),
- {ok, _} = retest_sh:run(HgCmd, [{dir, "repo/c"}]),
+ GitCmd = "/bin/sh -c \"git init && git add -A && git commit -a -m 'Initial commit'\"",
+ {ok, _} = retest_sh:run(GitCmd, [{dir, "repo/b"}]),
+ {ok, _} = retest_sh:run(GitCmd, [{dir, "repo/c"}]),
{ok, _} = retest_sh:run("./rebar get-deps compile", []),