Skip to content

Commit 25eb286

Browse files
committed
win bug fixes
1 parent a29a0d2 commit 25eb286

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

win/env-setup-run.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,13 +328,13 @@ function Setup-Mobile-Python {
328328
$localFlag = if ($UseLocal) { "true" } else { "false" }
329329

330330
# Decide which directory to run based on APP_PLATFORM (default = android)
331-
$run_dir = "android"
331+
$runDirName = "android"
332332

333333
if ($env:APP_PLATFORM -eq "ios") {
334-
$run_dir = "ios"
334+
$runDirName = "ios"
335335
}
336336

337-
$script:BROWSERSTACK_CONFIG_FILE = "./$run_dir/browserstack.yml"
337+
$script:BROWSERSTACK_CONFIG_FILE = "./$runDirName/browserstack.yml"
338338

339339
# Generate platform YAMLs
340340

0 commit comments

Comments
 (0)