From 18098dbafb3195ad658a84e85439c2536c4d68b7 Mon Sep 17 00:00:00 2001 From: CosmicScale Date: Wed, 19 Feb 2025 17:01:22 +0000 Subject: [PATCH] Removed check that would casuse script to fail if no PS1 games were present to install --- 03-Game-Installer.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/03-Game-Installer.sh b/03-Game-Installer.sh index 2cfc6fc..c591602 100755 --- a/03-Game-Installer.sh +++ b/03-Game-Installer.sh @@ -441,21 +441,9 @@ echo | tee -a "${LOG_FILE}" echo "Creating PS1 games list..." | tee -a "${LOG_FILE}" python3 "${HELPER_DIR}/list-builder-ps1.py" "${GAMES_PATH}" "${PS1_LIST}" | tee -a "${LOG_FILE}" -if [ "${PIPESTATUS[0]}" -ne 0 ]; then - echo "Error: Failed to create PS1 games list." | tee -a "${LOG_FILE}" - read -n 1 -s -r -p "Press any key to exit..." - echo - exit 1 -fi echo "Creating PS2 games list..." | tee -a "${LOG_FILE}" python3 "${HELPER_DIR}/list-builder-ps2.py" "${GAMES_PATH}" "${PS2_LIST}" | tee -a "${LOG_FILE}" -if [ "${PIPESTATUS[0]}" -ne 0 ]; then - echo "Error: Failed to create PS2 games list." | tee -a "${LOG_FILE}" - read -n 1 -s -r -p "Press any key to exit..." - echo - exit 1 -fi # Deactivate the virtual environment deactivate