Skip to content

Commit

Permalink
fixup! build: allow modification of device build-properties
Browse files Browse the repository at this point in the history
  • Loading branch information
blocktrron committed Dec 10, 2023
1 parent 7935eee commit 1799467
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/image_customization_lib.lua
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ local function evaluate_device(env, dev)
end

function M.get_selection(selection_type, env, dev)
local eval_result = evaluate_device(files, env, dev)
local eval_result = evaluate_device(env, dev)
return collect_keys(eval_result.selections[selection_type] or {})
end

function M.device_overrides(env, dev)
local eval_result = evaluate_device(files, env, dev)
local eval_result = evaluate_device(env, dev)
return eval_result.device_overrides
end

Expand Down

0 comments on commit 1799467

Please sign in to comment.