Skip to content

Commit ba03880

Browse files
Merge pull request #827 from JupiterOne/no-ticket-cleanups
NO-TICKET - Fix cache paths on Windows
2 parents 1dd1aa6 + f0d8f28 commit ba03880

2 files changed

Lines changed: 4 additions & 22 deletions

File tree

packages/integration-sdk-runtime/src/execution/collection.ts

Lines changed: 0 additions & 19 deletions
This file was deleted.

packages/integration-sdk-runtime/src/execution/dependencyGraph.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DepGraph } from 'dependency-graph';
22
import PromiseQueue from 'p-queue';
3-
3+
import * as path from 'path';
44
import {
55
AfterAddEntityHookFunction,
66
AfterAddRelationshipHookFunction,
@@ -398,8 +398,9 @@ export function executeStepDependencyGraph<
398398
context: TStepExecutionContext,
399399
) {
400400
let status = StepResultStatus.FAILURE;
401-
const entitiesPath = `${stepCacheFilePath}/entities`;
402-
const relationshipsPath = `${stepCacheFilePath}/relationships`;
401+
402+
const entitiesPath = path.join(stepCacheFilePath, 'entities');
403+
const relationshipsPath = path.join(stepCacheFilePath, 'relationships');
403404

404405
const { jobState, logger } = context;
405406

0 commit comments

Comments
 (0)