Skip to content
Snippets Groups Projects
Commit 7ac7bba7 authored by Armand Bahi's avatar Armand Bahi
Browse files

Add init_vmap.sh

parent fa7787d5
No related branches found
No related tags found
No related merge requests found
......@@ -38,16 +38,16 @@ for module in "${APP_MODULES[@]}"; do
# Crée les branches contenant uniquement les dossiers cibles
cd repos/module_${module}/
if [ -d "$(pwd)/repos/module_${module}/module/" ]; then
if [ -d "$(pwd)/module/" ]; then
git subtree split -P module/ -b module_split
fi
if [ -d "$(pwd)/repos/module_${module}/web_service/conf/" ]; then
if [ -d "$(pwd)/web_service/conf/" ]; then
git subtree split -P web_service/conf/ -b web_service_conf_split
fi
if [ -d "$(pwd)/repos/module_${module}/web_service/sql/" ]; then
if [ -d "$(pwd)/web_service/sql/" ]; then
git subtree split -P web_service/sql/ -b web_service_sql_split
fi
if [ -d "$(pwd)/repos/module_${module}/web_service/ws/" ]; then
if [ -d "$(pwd)/web_service/ws/" ]; then
git subtree split -P web_service/ws/ -b web_service_ws_split
fi
cd ../../
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment