From fad793b18e76dd1d9262f34c1bb94eb9b17f6b26 Mon Sep 17 00:00:00 2001 From: K4YT3X Date: Tue, 15 Dec 2020 12:56:28 -0500 Subject: [PATCH] formatted build script --- src/build.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/build.ps1 b/src/build.ps1 index ac9d3bd..ed2a6a0 100755 --- a/src/build.ps1 +++ b/src/build.ps1 @@ -12,7 +12,7 @@ To start a PowerShell session with execution policy bypass powershell -ExecutionPolicy Bypass #> -if ($args.count -ne 1){ +if ($args.count -ne 1) { Write-Host -ForegroundColor White "Usage:`n .\build.ps1 VIDEO2X_VERSION" Exit } @@ -88,7 +88,7 @@ Copy-Item "requirements.txt" -Destination "$($VIDEO2X_VERSION)\video2x-$($VIDEO2 Write-Host -ForegroundColor White "`nDeleting temporary files" $pathsToRemove = "__pycache__", "build", "dist", "*.spec" -foreach ($path in $pathsToRemove){ +foreach ($path in $pathsToRemove) { Write-Host "Removing path: $($path)" Remove-Item -path $path -recurse }