@@ -6,7 +6,7 @@ This PowerShell script builds a Git repository by supporting build systems such
66Parameters
77----------
88``` powershell
9- PS> . /build-repo.ps1 [[-path] <String>] [<CommonParameters>]
9+ /home/markus/Repos/PowerShell/scripts /build-repo.ps1 [[-path] <String>] [<CommonParameters>]
1010
1111-path <String>
1212 Specifies the path to the Git repository (default is current working directory)
@@ -28,7 +28,7 @@ Example
2828PS> ./build-repo.ps1 C:\Repos\ninja
2929⏳ Building 📂ninja using CMakeLists.txt into 📂ninja/_Build_Results...
3030...
31- ✔️ Built 📂ninja repository in 47 sec.
31+ ✅ Built 📂ninja repository in 47 sec.
3232
3333```
3434
@@ -54,7 +54,7 @@ Script Content
5454 PS> ./build-repo.ps1 C:\Repos\ninja
5555 ⏳ Building 📂ninja using CMakeLists.txt into 📂ninja/_Build_Results...
5656 ...
57- ✔️ Built 📂ninja repository in 47 sec.
57+ ✅ Built 📂ninja repository in 47 sec.
5858.LINK
5959 https://github.com/fleschutz/PowerShell
6060.NOTES
@@ -188,12 +188,12 @@ try {
188188
189189 $repoDirName = (Get-Item "$path").Name
190190 [int]$elapsed = $stopWatch.Elapsed.TotalSeconds
191- "✔️ Built 📂$repoDirName repository in $elapsed sec."
191+ "✅ Built 📂$repoDirName repository in $elapsed sec."
192192 exit 0 # success
193193} catch {
194194 "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
195195 exit 1
196196}
197197```
198198
199- * (generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 08/15/ 2024 09:50:44 )*
199+ * (generated by convert-ps2md.ps1 using the comment-based help of build-repo.ps1 as of 11/ 08/2024 12:34:45 )*
0 commit comments