Correct default target in Windows if no -t (#1520)

fix: correct default target in windows if no -t
This commit is contained in:
sposh 2021-11-08 15:26:26 +01:00 committed by GitHub
parent 5f3ef98ae9
commit 2995a5037f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
"providence-analytics": patch
---
Correct default target in Windows if no -t

View file

@ -102,7 +102,7 @@ function targetDefault() {
if (name === 'providence') {
return InputDataService.getTargetProjectPaths();
}
return [process.cwd()];
return [toPosixPath(process.cwd())];
}
/**