Skip to content

Commit a4ca518

Browse files
🩹 [Patch]: Encode all PowerShell files using UTF8 with BOM (#103)
## Description This pull request introduces a minor change to the `Planets.ps1` files in two test repositories. The only modification is the addition of a Unicode Byte Order Mark (BOM) at the beginning of each file, which does not affect script functionality but may impact how some editors interpret file encoding. - Added a BOM to the start of `tests/srcTestRepo/src/variables/public/Planets.ps1` - Added a BOM to the start of `tests/srcWithManifestTestRepo/src/variables/public/Planets.ps1`
1 parent b6fbfe5 commit a4ca518

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/srcTestRepo/src/variables/public/Planets.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$script:Planets = @(
1+
$script:Planets = @(
22
@{
33
Name = 'Mercury'
44
Mass = 0.330

tests/srcWithManifestTestRepo/src/variables/public/Planets.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$script:Planets = @(
1+
$script:Planets = @(
22
@{
33
Name = 'Mercury'
44
Mass = 0.330

0 commit comments

Comments
 (0)