restore full world effects outside portmaster

This commit is contained in:
Alexander Sellite 2026-09-01 19:00:13 -04:00
parent 4fda6e97f6
commit 41b4f86ddf
15 changed files with 398 additions and 122 deletions

View file

@ -282,6 +282,16 @@ func _validate_low_end_profile_contract() -> void:
)
assert(builder.contains("prepare_portmaster_assets.sh"))
assert(builder.contains("straywild-portmaster-export"))
assert(builder.contains('--export-release "PortMaster ARM64"'))
assert(builder.contains("PORTMASTER_FEATURE_MARKER"))
assert(builder.contains("Run a full PortMaster build before using --package-only."))
var export_presets: String = FileAccess.get_file_as_string(
"res://export_presets.cfg"
)
assert(export_presets.contains('name="PortMaster ARM64"'))
assert(export_presets.contains(
'custom_features="straywild_portmaster"'
))
var asset_profile: String = FileAccess.get_file_as_string(
"res://scripts/prepare_portmaster_assets.sh"
)