Closed prjemian closed 3 years ago
To work around a known problem in caQtDM, need to
use a sed command to replace .adl with .ui in all caQtDM screens in this container.
sed
.adl
.ui
cd /tmp/docker_ioc/synapps-6.1/screens/ui for f in $(ls *.ui); do echo Converting $f ... sed -i s:'.adl':'.ui':g ./$f done
Modify the v1.0 start_xxx.sh script with this code (sans the echo command).
start_xxx.sh
echo
Also the start_adsim.sh code, as noted in https://github.com/BCDA-APS/epics-bluesky-vm/issues/3#issuecomment-814275728
start_adsim.sh
Instead, build this code into the custom docker IOC images.
To work around a known problem in caQtDM, need to
Modify the v1.0
start_xxx.sh
script with this code (sans theecho
command).