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.
This commit is contained in:
songtianlun 2025-01-03 17:10:27 +08:00
parent 534a9ab0e4
commit 5821fefcae

View File

@ -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" \