From 5821fefcaed8e5353618529fbc869016cafe1153 Mon Sep 17 00:00:00 2001 From: songtianlun Date: Fri, 3 Jan 2025 17:10:27 +0800 Subject: [PATCH] fix: simplify script execution command - Remove unnecessary 'true ||' condition from the command that calls mirror.sh. - This change clarifies the intent of the command and ensures that the script executes as expected. --- main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.sh b/main.sh index 10bfcfa..29a2d73 100644 --- a/main.sh +++ b/main.sh @@ -42,7 +42,7 @@ main() { log "开始同步处理..." # 调用 mirror.sh 进行同步 - true || bash "$SCRIPT_DIR/mirror.sh" \ + bash "$SCRIPT_DIR/mirror.sh" \ "$GITHUB_USER" \ "$GITHUB_TOKEN" \ "$GITEA_URL" \