Skip to content
Snippets Groups Projects
Commit 0a3d3156 authored by Pierre-Gilles Levallois's avatar Pierre-Gilles Levallois
Browse files

checking commad return after each operation

parent 0e3199da
Branches
Tags
1 merge request!6Fully functional version that calculate layer with all stages
Pipeline #51148 passed
......@@ -94,14 +94,17 @@ done
stage "InitDatas"
python3 main.py initDatas
#check
check
stage "Compute Factors & Indices"
for NOM_COMMUNE in $( echo "${!LISTE_COMMUNES[@]}" | tr ' ' '\n' | sort ); do
stage "Compute Factors : $NOM_COMMUNE"
python3 main.py computeFactors ${LISTE_COMMUNES[$NOM_COMMUNE]}
check
stage "Compute Indices : $NOM_COMMUNE"
python3 main.py computeIndices ${LISTE_COMMUNES[$NOM_COMMUNE]}
check
done
# Launching everything, it is possible to give a list of townships
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment