secubox-openwrt/.github/workflows
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
..
build-openwrt-packages.yml fix: correct bash syntax error in build workflow 2025-12-25 20:17:00 +01:00
build-secubox-images.yml feat: add complete SecuBox package suite to firmware builds 2025-12-25 06:43:52 +01:00
test-validate.yml fix: improve feed update error handling and validation 2025-12-24 00:37:12 +01:00