From 49774110cc64180a0f80de88df4a4493c9058589 Mon Sep 17 00:00:00 2001 From: Andrew <36489577+recvfrom@users.noreply.github.com> Date: Thu, 27 Aug 2020 12:22:37 -0400 Subject: [PATCH] Fix #255: Use relative paths for the git submodule Fixes #255 This enables both HTTPS and SSH to be used to checkout the project, per https://stackoverflow.com/a/44630028/9457431 --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index bb4c6009..079d13dc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "rules"] path = rules - url = git@github.com:fireeye/capa-rules.git + url = ../capa-rules.git [submodule "tests/data"] path = tests/data - url = git@github.com:fireeye/capa-testfiles.git + url = ../capa-testfiles.git