| Message ID | 20260815134722.497586-4-adrian.freihofer@siemens.com |
|---|---|
| State | New |
| Headers | show |
| Series | cooker/tinfoil: fix -b bbappend handling and add single-task prepared-task API | expand |
diff --git a/lib/bb/command.py b/lib/bb/command.py index 59a979ee9..b57c5d4a3 100644 --- a/lib/bb/command.py +++ b/lib/bb/command.py @@ -228,7 +228,7 @@ class CommandsSync: Set the value of variable in configuration """ varname = params[0] - value = str(params[1]) + value = params[1] setattr(command.cooker.configuration, varname, value) def enableDataTracking(self, command, params):