* [pve-devel] [PATCH proxmox-i18n] fix submodules paths to work with git.proxmox.com
@ 2025-08-02 10:02 Kamil Trzcinski
2025-08-02 12:48 ` [pve-devel] applied: " Thomas Lamprecht
0 siblings, 1 reply; 2+ messages in thread
From: Kamil Trzcinski @ 2025-08-02 10:02 UTC (permalink / raw)
To: pve-devel
Some submodules miss the `ui/` and do fail to pull data from git.proxmox.com.
Using absolute paths makes it compatible with github.com/proxmox.
Before:
Submodule 'proxmox-yew-comp' (git://git.proxmox.com/git/proxmox-yew-comp) registered for path 'proxmox-yew-comp'
Submodule 'proxmox-yew-widget-toolkit' (git://git.proxmox.com/git/proxmox-yew-widget-toolkit) registered for path 'proxmox-yew-widget-toolkit'
After:
Submodule 'proxmox-yew-comp' (git://git.proxmox.com/git/ui/proxmox-yew-comp.git) registered for path 'proxmox-yew-comp'
Submodule 'proxmox-yew-widget-toolkit' (git://git.proxmox.com/git/ui/proxmox-yew-widget-toolkit.git) registered for path 'proxmox-yew-widget-toolkit'
Signed-off-by: Kamil Trzcinski <ayufan@ayufan.eu>
---
.gitmodules | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.gitmodules b/.gitmodules
index d5b93b7..374b9ee 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -17,10 +17,10 @@
url = ../proxmox-datacenter-manager
[submodule "proxmox-yew-widget-toolkit"]
path = proxmox-yew-widget-toolkit
- url = ../proxmox-yew-widget-toolkit
+ url = git://git.proxmox.com/git/ui/proxmox-yew-widget-toolkit.git
[submodule "proxmox-yew-comp"]
path = proxmox-yew-comp
- url = ../proxmox-yew-comp
+ url = git://git.proxmox.com/git/ui/proxmox-yew-comp.git
[submodule "pve-yew-mobile-gui"]
path = pve-yew-mobile-gui
url = git://git.proxmox.com/git/ui/pve-yew-mobile-gui.git
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-08-02 12:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-08-02 10:02 [pve-devel] [PATCH proxmox-i18n] fix submodules paths to work with git.proxmox.com Kamil Trzcinski
2025-08-02 12:48 ` [pve-devel] applied: " Thomas Lamprecht
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.