Correct default target in Windows if no -t (#1520)
fix: correct default target in windows if no -t
This commit is contained in:
parent
5f3ef98ae9
commit
2995a5037f
2 changed files with 6 additions and 1 deletions
5
.changeset/twelve-zoos-turn.md
Normal file
5
.changeset/twelve-zoos-turn.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"providence-analytics": patch
|
||||
---
|
||||
|
||||
Correct default target in Windows if no -t
|
||||
|
|
@ -102,7 +102,7 @@ function targetDefault() {
|
|||
if (name === 'providence') {
|
||||
return InputDataService.getTargetProjectPaths();
|
||||
}
|
||||
return [process.cwd()];
|
||||
return [toPosixPath(process.cwd())];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue