diff --git a/scripts/clean-repo.ps1 b/scripts/clean-repo.ps1 index dfd25c39..380ec613 100755 --- a/scripts/clean-repo.ps1 +++ b/scripts/clean-repo.ps1 @@ -12,7 +12,7 @@ โณ (2/4) Checking local repository... ๐Ÿ“‚C:\rust โณ (3/4) Removing untracked files in repository... โณ (4/4) Removing untracked files in submodules... - โœ”๏ธ Cleaned up ๐Ÿ“‚rust repository in 1 sec. + โœ”๏ธ Repo ๐Ÿ“‚rust is clean now (took 1s). .LINK https://github.com/fleschutz/PowerShell .NOTES @@ -45,7 +45,7 @@ try { if ($lastExitCode -ne "0") { throw "'git clean' in the submodules failed with exit code $lastExitCode" } [int]$elapsed = $stopWatch.Elapsed.TotalSeconds - "โœ”๏ธ Cleaned up ๐Ÿ“‚$repoName repository in $elapsed sec." + "โœ”๏ธ Repo ๐Ÿ“‚$repoName is clean now (took $($elapsed)s)." exit 0 # success } catch { "โš ๏ธ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"