Skip to content

Commit 82c4f57

Browse files
authored
Merge branch 'develop' into ethernet-view/fix-uint32
2 parents 70ef788 + 41cb07d commit 82c4f57

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.gitmodules

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[submodule "backend/cmd/JSON_ADE"]
2-
path = backend/cmd/JSON_ADE
3-
url = https://github.com/HyperloopUPV-H8/JSON_ADE.git
1+
[submodule "backend/cmd/adj"]
2+
path = backend/cmd/adj
3+
url = https://github.com/HyperloopUPV-H8/adj.git
44
branch = main

backend/cmd/testadj.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def validate_json_folder(folder_path):
115115
print(f"Error al procesar el archivo {full_path}: {e}")
116116

117117

118-
if os.path.exists('./JSON_ADE/') == False:
119-
print("La carpeta JSON_ADE no existe")
118+
if os.path.exists('./adj/') == False:
119+
print("La carpeta ./adj/ no existe")
120120
if __name__ == "__main__":
121-
validate_json_folder("./JSON_ADE/")
121+
validate_json_folder("./adj/")

backend/internal/adj/adj.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
)
1212

1313
const (
14-
RepoUrl = "https://github.com/HyperloopUPV-H8/JSON_ADE.git" // URL of the ADJ repository
15-
RepoPath = "./JSON_ADE/" // Path where the ADJ repository is cloned
14+
RepoUrl = "https://github.com/HyperloopUPV-H8/adj.git" // URL of the ADJ repository
15+
RepoPath = "./adj/" // Path where the ADJ repository is cloned
1616
)
1717

1818
func NewADJ(AdjBranch string) (ADJ, error) {

backend/pkg/adj/adj.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
)
1111

1212
const (
13-
RepoUrl = "https://github.com/HyperloopUPV-H8/JSON_ADE.git" // URL of the ADJ repository
14-
RepoPath = "./JSON_ADE/" // Path where the ADJ repository is cloned
13+
RepoUrl = "https://github.com/HyperloopUPV-H8/adj.git" // URL of the ADJ repository
14+
RepoPath = "./adj/" // Path where the ADJ repository is cloned
1515
)
1616

1717
func NewADJ() (ADJ, error) {

0 commit comments

Comments
 (0)