fix(cli): improve flow sync for windows

This commit is contained in:
Ruben Fiszel
2023-12-15 01:59:10 +01:00
parent c1ba6a4164
commit 2fdddf1f2a

View File

@@ -152,7 +152,7 @@ export function getTypeStrFromPath(
| "folder"
| "app"
| "schedule" {
if (p.includes(".flow/")) {
if (p.includes(".flow" + path.sep)) {
return "flow";
}
const parsed = path.parse(p);