Working straight angle placement of ship pieces

This commit is contained in:
olof.pettersson
2025-11-21 18:18:10 +01:00
parent 94e33c0cba
commit 916172d0b2
12 changed files with 296 additions and 113 deletions

13
reinit_submodules.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/sh
set -e
git config -f .gitmodules --get-regexp '^submodule\..*\.path$' |
while read path_key local_path
do
url_key=$(echo $path_key | sed 's/\.path/.url/')
url=$(git config -f .gitmodules --get "$url_key")
git submodule add $url $local_path
done
# https://stackoverflow.com/questions/11258737/restore-git-submodules-from-gitmodules