From 1a2f7c6337e0b45eb533c3a7707c12e8cb2945ce Mon Sep 17 00:00:00 2001 From: HPPinata <83947761+HPPinata@users.noreply.github.com> Date: Sun, 24 Nov 2024 00:37:32 +0100 Subject: [PATCH] don't fail on empty rm --- horde_worker_regen/amd_go_fast/install_amd_go_fast.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/horde_worker_regen/amd_go_fast/install_amd_go_fast.sh b/horde_worker_regen/amd_go_fast/install_amd_go_fast.sh index cfc9d3e9..791da9fc 100755 --- a/horde_worker_regen/amd_go_fast/install_amd_go_fast.sh +++ b/horde_worker_regen/amd_go_fast/install_amd_go_fast.sh @@ -15,5 +15,5 @@ if [ "${FLASH_ATTENTION_USE_TRITON_ROCM^^}" == "TRUE" ]; then else echo "Did not detect support for AMD GO FAST. Cleaning up." pip uninstall flash_attn - rm "${PY_SITE_DIR}"/hordelib/nodes/amd_go_fast.py + rm -f "${PY_SITE_DIR}"/hordelib/nodes/amd_go_fast.py fi