BrettMayson / HEMTT

Build System for Arma 3
https://brettmayson.github.io/HEMTT
GNU General Public License v2.0
109 stars 40 forks source link

`with` syntax not supported #657

Closed DarkWanderer closed 7 months ago

DarkWanderer commented 7 months ago

Tools (complete and add to the following information):

Description: HEMTT throws an error when encountering with statement

Steps to reproduce:

  1. Clone this project
  2. Run hemtt build

Expected behavior: Build without errors

Observed behavior

error[SPE2]: unparseable syntax
  ┌─ addons/main/legacy/util/fn_generateUID.sqf:5:1
  │
5 │ with missionNamespace do {
  │ ^^^^ unparseable syntax

Error comes from this line

Logs:

See https://github.com/DarkWanderer/DynamicOperations/actions/runs/8042471082/job/21963252322?pr=81#step:6:571

PabstMirror commented 7 months ago

missing semicolon on line 3 https://github.com/DarkWanderer/DynamicOperations/blob/ba365eceb1eec6b39d19460a07da55e33f3db1f4/addons/main/legacy/util/fn_generateUID.sqf#L3

DarkWanderer commented 7 months ago

Ah. My bad then, thank you for looking