From 43c080d1f9e4f9157b16d6e0602ad902355ac46e Mon Sep 17 00:00:00 2001 From: SageCreations Date: Tue, 25 Mar 2025 22:26:35 -0500 Subject: [PATCH] fixed cp command still calling webui-2 instead of libwebui-2, was causing fail on program start since upstream switched on nightly. --- PyPI/Package/src/webui/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyPI/Package/src/webui/bootstrap.sh b/PyPI/Package/src/webui/bootstrap.sh index 0623552..a11f013 100755 --- a/PyPI/Package/src/webui/bootstrap.sh +++ b/PyPI/Package/src/webui/bootstrap.sh @@ -123,7 +123,7 @@ if [[ "$1" == "minimal" ]]; then # Copy library mkdir -p "$FILENAME" 2>/dev/null - cp -f "cache/$FILENAME/webui-2.${EXT}" "$FILENAME/webui-2.${EXT}" + cp -f "cache/$FILENAME/libwebui-2.${EXT}" "$FILENAME/libwebui-2.${EXT}" # Remove cache folder rm -rf "cache"