prjemian / epics-docker

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

BUG: medm startup looks for .ui file #70

Closed prjemian closed 1 year ago

prjemian commented 1 year ago
(base) prjemian@zap:~$ iocmgr.sh medm gp zgp
(base) prjemian@zap:~$ 
File has wrong suffix: ioczgp.ui
prjemian commented 1 year ago

Somehow, this code: https://github.com/prjemian/epics-docker/blob/c6694c6d86e50976124761380464fc817495bc5a/resources/iocmgr.sh#L146-L151

is installed as

medm(){
    if [ "gp" == "${IOC}" ]; then
        custom_screen="ioc${PRE}.ui"
    fi
    "${HOST_TMP_SHARE}/start_MEDM_${PRE}" "${custom_screen}"
}
prjemian commented 1 year ago

Aha. Local git repo was not in sync with GH. Fixed previously.

prjemian commented 1 year ago

Duplicate of #68