prjemian / epics-docker

Provide EPICS IOCs in docker images
9 stars 4 forks source link

Need to change ".adl" to ".ui" in all .ui files #26

Closed prjemian closed 3 years ago

prjemian commented 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.

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).

prjemian commented 3 years ago

Also the start_adsim.sh code, as noted in https://github.com/BCDA-APS/epics-bluesky-vm/issues/3#issuecomment-814275728

prjemian commented 3 years ago

Instead, build this code into the custom docker IOC images.