From 202e681fffefa4c8af4e8e258a7206b19d419d1a Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Wed, 9 Sep 2020 16:37:23 -0700 Subject: [PATCH] install: fix ospf mdr repo checkout location --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index dd86cdf9..444ba890 100644 --- a/tasks.py +++ b/tasks.py @@ -189,8 +189,8 @@ def install_ospf_mdr(c: Context, os_info: OsInfo, hide: bool) -> None: ospf_dir = "../ospf-mdr" ospf_url = "https://github.com/USNavalResearchLaboratory/ospf-mdr.git" c.run(f"git clone {ospf_url} {ospf_dir}", hide=hide) - c.run("git checkout 26fe5a4401a26760c553fcadfde5311199e89450", hide=hide) with c.cd(ospf_dir): + c.run("git checkout 26fe5a4401a26760c553fcadfde5311199e89450", hide=hide) c.run("./bootstrap.sh", hide=hide) c.run( "./configure --disable-doc --enable-user=root --enable-group=root "