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
|
||
|---|---|---|
| .. | ||
| build-openwrt-packages.yml | ||
| build-secubox-images.yml | ||
| test-validate.yml | ||