ci: format dev ci before_scripts consistently
What changed, and why it matters
This commit is purely a formatting cleanup in the project's internal GitLab CI configuration. It adds missing spaces between '&&' and './tools/switch_to.sh' in several build job scripts. There is no functional change, no security fix, and no change to the firmware or user-facing behavior.
No security action needed. This is a cosmetic/style-only CI change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies gitlab/dev_fw.yml, a GitLab CI/CD pipeline definition. It changes the ‘before_script’ of multiple build_dev_jade* jobs by inserting a space after the shell ‘&&’ operator. The commands were already syntactically valid because ‘&&./cmd’ is parsed the same as ‘&& ./cmd’ in shell; the change only improves readability and consistency. No executable code, build logic, or security boundary is altered.
Changed components
gitlab/dev_fw.ymlInspect captured patch +5 / −5
diff --git a/gitlab/dev_fw.yml b/gitlab/dev_fw.yml
index 3c6e21b..a049fb8 100644
--- a/gitlab/dev_fw.yml
+++ b/gitlab/dev_fw.yml
@@ -13,24 +13,24 @@ build_dev_jade:
build_dev_jade_noradio:
extends: .build_dev_template
before_script:
- - . $HOME/esp/esp-idf/export.sh &&./tools/switch_to.sh jade --dev --noradio
+ - . $HOME/esp/esp-idf/export.sh && ./tools/switch_to.sh jade --dev --noradio
build_dev_jade_v1_1:
extends: .build_dev_template
before_script:
- - . $HOME/esp/esp-idf/export.sh &&./tools/switch_to.sh jade_v1_1 --dev
+ - . $HOME/esp/esp-idf/export.sh && ./tools/switch_to.sh jade_v1_1 --dev
build_dev_jade_v1_1_noradio:
extends: .build_dev_template
before_script:
- - . $HOME/esp/esp-idf/export.sh &&./tools/switch_to.sh jade_v1_1 --dev --noradio
+ - . $HOME/esp/esp-idf/export.sh && ./tools/switch_to.sh jade_v1_1 --dev --noradio
build_dev_jade_v2:
extends: .build_dev_template
before_script:
- - . $HOME/esp/esp-idf/export.sh &&./tools/switch_to.sh jade_v2 --dev
+ - . $HOME/esp/esp-idf/export.sh && ./tools/switch_to.sh jade_v2 --dev
build_dev_jade_v2_noradio:
extends: .build_dev_template
before_script:
- - . $HOME/esp/esp-idf/export.sh &&./tools/switch_to.sh jade_v2 --dev --noradio
+ - . $HOME/esp/esp-idf/export.sh && ./tools/switch_to.sh jade_v2 --dev --noradio
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.