Skip to content

Commit

Permalink
Code Quality: Fix Configure-AppxManifest
Browse files Browse the repository at this point in the history
  • Loading branch information
yaira2 committed Dec 6, 2024
1 parent 07268dc commit 334fb72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/Configure-AppxManifest.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ elseif ($Branch -eq "StoreStable")

# Update app protocol and execution alias
$ap.SetAttribute("Name", "files");
$aea.RemoveChild(aea.FirstChild); # Avoid duplication
$aea.RemoveChild($aea.FirstChild); # Avoid duplication

# Save modified Package.appxmanifest
$xmlDoc.Save($PackageManifestPath)
Expand Down

0 comments on commit 334fb72

Please sign in to comment.