Skip to content

Commit 59c0900

Browse files
authored
refactor
1 parent 4916ea4 commit 59c0900

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

build.ps1

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1-
dir
1+
Get-ChildItem
2+
23
Write-Host "Starting Launcher Generator"
3-
Start-Process "D:\a\VSCodiumPortable\VSCodiumPortable\PortableApps.comLauncher\PortableApps.comLauncherGenerator.exe" -ArgumentList "D:\a\VSCodiumPortable\VSCodiumPortable\VSCodiumPortable" -NoNewWindow -Wait
4+
$launcherPath = "D:\a\VSCodiumPortable\VSCodiumPortable\PortableApps.comLauncher\PortableApps.comLauncherGenerator.exe"
5+
$launcherArgs = "D:\a\VSCodiumPortable\VSCodiumPortable\VSCodiumPortable"
6+
Start-Process -FilePath $launcherPath -ArgumentList $launcherArgs -NoNewWindow -Wait
7+
48
Write-Host "Starting Installer Generator"
5-
Start-Process "D:\a\VSCodiumPortable\VSCodiumPortable\PortableApps.comInstaller\PortableApps.comInstaller.exe" -ArgumentList "D:\a\VSCodiumPortable\VSCodiumPortable\VSCodiumPortable" -NoNewWindow -Wait
6-
dir
9+
$installerPath = "D:\a\VSCodiumPortable\VSCodiumPortable\PortableApps.comInstaller\PortableApps.comInstaller.exe"
10+
$installerArgs = "D:\a\VSCodiumPortable\VSCodiumPortable\VSCodiumPortable"
11+
Start-Process -FilePath $installerPath -ArgumentList $installerArgs -NoNewWindow -Wait
12+
13+
Get-ChildItem

0 commit comments

Comments
 (0)