add support for Debian 12

templates now support Debian 10 and Debian 12
This commit is contained in:
Maier Felix
2025-06-13 09:08:09 +02:00
parent 0ff5878b4a
commit 5881d29ceb
2 changed files with 52 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
#!/bin/bash
cp -r /ioc/NeedfulThings/ecmc_python_venv/.venv /tmp/
if [ "$EPICS_HOST_ARCH" = "deb10-x86_64" ]; then
cp -r /ioc/NeedfulThings/ecmc_python_venv/.venv /tmp/
fi
if [ "$EPICS_HOST_ARCH" = "deb12-x86_64" ]; then
cp -r /ioc/NeedfulThings/ecmc_python_venv/.venv_deb12 /tmp/.venv
fi