diff --git a/Scripts/clean-repo.ps1 b/Scripts/clean-repo.ps1 index 22fdadf8..fc1e5ee4 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... - โœ”๏ธ Cleaning repo ๐Ÿ“‚rust took 1 sec + โœ”๏ธ Cleaned repo ๐Ÿ“‚rust in 1 sec .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 - "โœ”๏ธ Cleaning repo ๐Ÿ“‚$RepoDirName took $Elapsed sec" + "โœ”๏ธ Cleaned repo ๐Ÿ“‚$RepoDirName in $Elapsed sec" exit 0 # success } catch { "โš ๏ธ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"