Spaces:
Sleeping
Sleeping
Guilherme Silberfarb Costa commited on
Commit ·
82e25a7
1
Parent(s): edfdca7
Fix PowerShell smoke test params
Browse files
build/windows/smoke_test_portable.ps1
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
-
$ErrorActionPreference = "Stop"
|
| 2 |
-
|
| 3 |
param(
|
| 4 |
[string]$AppDir = "dist/MesaFrame",
|
| 5 |
[int]$Port = 8876
|
| 6 |
)
|
| 7 |
|
|
|
|
|
|
|
| 8 |
$appDirResolved = (Resolve-Path $AppDir).Path
|
| 9 |
$configDir = Join-Path $appDirResolved "config"
|
| 10 |
$runtimeDir = Join-Path $appDirResolved "runtime"
|
|
|
|
|
|
|
|
|
|
| 1 |
param(
|
| 2 |
[string]$AppDir = "dist/MesaFrame",
|
| 3 |
[int]$Port = 8876
|
| 4 |
)
|
| 5 |
|
| 6 |
+
$ErrorActionPreference = "Stop"
|
| 7 |
+
|
| 8 |
$appDirResolved = (Resolve-Path $AppDir).Path
|
| 9 |
$configDir = Join-Path $appDirResolved "config"
|
| 10 |
$runtimeDir = Join-Path $appDirResolved "runtime"
|