From 09c7e17e320b742e2db795fd2056a8570a1a7418 Mon Sep 17 00:00:00 2001 From: Dave Smith Date: Sat, 2 Mar 2013 08:20:55 -0700 Subject: Remove hg from integration tests; git is defacto standard at this point --- inttest/tdeps1/a.rebar.config | 2 +- inttest/tdeps1/b.rebar.config | 2 +- inttest/tdeps1/tdeps1_rt.erl | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'inttest/tdeps1') 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", []), -- cgit v1.1