comment requirements.txt until we have them

Reported by Thomas Rusiecki
This commit is contained in:
pedro 2024-10-16 20:17:58 +02:00
parent f946a566a2
commit 555d37e5c3
1 changed files with 4 additions and 1 deletions

View File

@ -259,6 +259,8 @@ prepare_app() {
${SUDO} mkdir -p "${workbench_dir}" ${SUDO} mkdir -p "${workbench_dir}"
${SUDO} cp workbench-script.py "${workbench_dir}/" ${SUDO} cp workbench-script.py "${workbench_dir}/"
${SUDO} cp -arp locale "${workbench_dir}/" ${SUDO} cp -arp locale "${workbench_dir}/"
# TODO uncomment when we have dependencies again
${SUDO} cp requirements.txt "${workbench_dir}/"
# startup script execution # startup script execution
cat > "${ISO_PATH}/chroot/root/.profile" <<END cat > "${ISO_PATH}/chroot/root/.profile" <<END
@ -313,7 +315,8 @@ echo 'Install sanitize requirements'
apt-get install -y --no-install-recommends \ apt-get install -y --no-install-recommends \
hdparm nvme-cli < /dev/null hdparm nvme-cli < /dev/null
pipenv run pip install -r /opt/workbench/requirements.txt # TODO uncomment when we have dependencies again
# pipenv run pip install -r /opt/workbench/requirements.txt
END END
)" )"
} }