diff options
| author | Adonais Romero González <[email protected]> | 2022-09-06 16:36:33 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-09-06 16:36:33 -0700 |
| commit | 110e8c201d5a929fc01e333ceac0dc71b0267237 (patch) | |
| tree | ad236c3bcd9cdca7511753950ea60db417160d56 /Build-AllProjects.ps1 | |
| parent | d504c54cf595e9185617a3e611e417617be8c0b8 (diff) | |
Miscellaneous build scripts fixes (#779)
Fix actions: escape emoji characters; add small validations to build scripts
Diffstat (limited to 'Build-AllProjects.ps1')
| -rw-r--r-- | Build-AllProjects.ps1 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-AllProjects.ps1 b/Build-AllProjects.ps1 index 4738907c..1c35d884 100644 --- a/Build-AllProjects.ps1 +++ b/Build-AllProjects.ps1 @@ -7,7 +7,7 @@ foreach ($file in $solutionFiles) { $dir = (Get-Item $file).DirectoryName $dir_norm = $dir.Replace($root, '').Trim('\').Replace('\', '.').ToLower() - echo "🔎 Found project [$dir_norm] at $dir" + Write-Output "`u{1F50E} Found project [$dir_norm] at $dir" $projectSet[$dir_norm] = $dir } |
