10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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
|