Skip to content

Commit

Permalink
Fix git submodule usage
Browse files Browse the repository at this point in the history
The relative paths in .gitmodules contained a stray github.com/
path component which broke submodule resolution.

Got broken in jamulussoftware#934
Fixes jamulussoftware#984

Signed-off-by: Christian Hoffmann <[email protected]>
  • Loading branch information
hoffie committed Feb 12, 2021
1 parent 04f8724 commit 1840277
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[submodule "libs/oboe"]
path = libs/oboe
url = ../../github.com/google/oboe.git
url = ../../google/oboe.git
[submodule "tools/jamulus-php"]
path = tools/jamulus-php
url = ../../github.com/softins/jamulus-php
url = ../../softins/jamulus-php
[submodule "tools/jamulus-web"]
path = tools/jamulus-web
url = ../../github.com/softins/jamulus-web
url = ../../softins/jamulus-web
[submodule "tools/jamulus-wireshark"]
path = tools/jamulus-wireshark
url = ../../github.com/softins/jamulus-wireshark
url = ../../softins/jamulus-wireshark
[submodule "tools/jamulus-historytool"]
path = tools/jamulus-historytool
url = ../../github.com/pljones/jamulus-historytool
url = ../../pljones/jamulus-historytool
[submodule "tools/jamulus-jamexporter"]
path = tools/jamulus-jamexporter
url = ../../github.com/pljones/jamulus-jamexporter
url = ../../pljones/jamulus-jamexporter
[submodule "tools/jamulus-docker"]
path = tools/jamulus-docker
url = ../../github.com/grundic/jamulus-docker
url = ../../grundic/jamulus-docker
[submodule "tools/jamulus-server-remote"]
path = tools/jamulus-server-remote
url = ../../github.com/vdellamea/jamulus-server-remote
url = ../../vdellamea/jamulus-server-remote

0 comments on commit 1840277

Please sign in to comment.