We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29a0d2 commit 25eb286Copy full SHA for 25eb286
win/env-setup-run.ps1
@@ -328,13 +328,13 @@ function Setup-Mobile-Python {
328
$localFlag = if ($UseLocal) { "true" } else { "false" }
329
330
# Decide which directory to run based on APP_PLATFORM (default = android)
331
- $run_dir = "android"
+ $runDirName = "android"
332
333
if ($env:APP_PLATFORM -eq "ios") {
334
- $run_dir = "ios"
+ $runDirName = "ios"
335
}
336
337
- $script:BROWSERSTACK_CONFIG_FILE = "./$run_dir/browserstack.yml"
+ $script:BROWSERSTACK_CONFIG_FILE = "./$runDirName/browserstack.yml"
338
339
# Generate platform YAMLs
340
0 commit comments