Commit 4873699cf51314b5a5ac3e527d5ab5a9251042c4
1 parent
e915a87c
Exists in
master
and in
111 other branches
args generation for internal params - not needed
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
update_amda/cp2amda
... | ... | @@ -26,17 +26,17 @@ if [ -e $AMDAINTERNALDIR/ParamTemplateList.xml ]; then |
26 | 26 | cp $AMDAINTERNALDIR/ParamTemplateList.xml $AMDAINSTALLATION/AMDA_IHM/generic_data/ParamTemplate |
27 | 27 | fi |
28 | 28 | |
29 | -# if internal parameters not shown in the tree exist => copy them to NEWMETA | |
30 | -if [ -d $AMDAINTERNALDIR/INTERNAL_PARAM_DEF ]; then | |
31 | - cp $AMDAINTERNALDIR/INTERNAL_PARAM_DEF/* $NEWMETA/final/ | |
32 | -fi | |
33 | - | |
34 | 29 | # copy all parameter desctiptions |
35 | 30 | if [ ! -d $AMDAINSTALLATION/AMDA_IHM/generic_data/newKernelDDBase ]; then |
36 | 31 | mkdir $AMDAINSTALLATION/AMDA_IHM/generic_data/newKernelDDBase |
37 | 32 | fi |
38 | 33 | cp $NEWMETA/final/*.xml $AMDAINSTALLATION/AMDA_IHM/generic_data/newKernelDDBase |
39 | - | |
34 | + | |
35 | +# if internal parameters not shown in the tree exist => copy them to AMDA Installation without processing | |
36 | +if [ -d $AMDAINTERNALDIR/INTERNAL_PARAM_DEF ]; then | |
37 | + cp $AMDAINTERNALDIR/INTERNAL_PARAM_DEF/* $AMDAINSTALLATION/AMDA_IHM/generic_data/newKernelDDBase | |
38 | +fi | |
39 | + | |
40 | 40 | # if special help exitsts => copy it to NEWMETA |
41 | 41 | if [ -d $AMDAINTERNALDIR/HELP_PREDEFINED ]; then |
42 | 42 | cp $AMDAINTERNALDIR/HELP_PREDEFINED/* $NEWMETA/help | ... | ... |