secubox-openwrt/.github
CyberMind-FR 1e9bc16aa7 fix: correct bash syntax error in build workflow
Fixes 'syntax error near unexpected token else' in build step.

The if/else structure was broken with nested conditionals causing
an orphaned else statement. Restructured to proper if-then-else flow.

Error was:
  line 60: syntax error near unexpected token 'else'

Fixed structure:
  if build_succeeds; then
    if ipk_exists; then success; else no_ipk; fi
  else
    build_failed
  fi
2025-12-25 20:17:00 +01:00
..
workflows fix: correct bash syntax error in build workflow 2025-12-25 20:17:00 +01:00