Commit d3f16a02ac05416d395c4a12a6a153a6b807eb29
1 parent
3152d6be
Exists in
master
and in
111 other branches
copy paramInfo
Showing
1 changed file
with
9 additions
and
2 deletions
Show diff stats
updateAmda
... | ... | @@ -3,7 +3,7 @@ |
3 | 3 | # --install | -i ; --with-remote | -r ; --generate-param-args | -a ; |
4 | 4 | # --spase-synchro | -s ; --clean-new-meta | -c ; --help | -h; |
5 | 5 | |
6 | -. updateEnv.sh | |
6 | +. ./updateEnv.sh | |
7 | 7 | |
8 | 8 | for option in $@ |
9 | 9 | do |
... | ... | @@ -122,7 +122,14 @@ |
122 | 122 | |
123 | 123 | cleanNewMetaParamInfo |
124 | 124 | generate_param_info |
125 | - | |
125 | + # copy info for parameter arguments | |
126 | + if [ ! -d $AMDAINSTALLATION/AMDA_IHM/generic_data/ParamInfo ]; then | |
127 | + mkdir $AMDAINSTALLATION/AMDA_IHM/generic_data/ParamInfo | |
128 | + fi | |
129 | + if [ -d $NEWMETA/ParamInfo ] | |
130 | + then | |
131 | + cp $NEWMETA/ParamInfo/info*.xml $AMDAINSTALLATION/AMDA_IHM/generic_data/ParamInfo | |
132 | + fi | |
126 | 133 | echo "generate info for arguments : done" |
127 | 134 | fi |
128 | 135 | ... | ... |