Skip to content

Commit

Permalink
fix(bazel): resolve generated temporary directory (#1086)
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored and clydin committed Apr 4, 2023
1 parent 0189d65 commit d28e5f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazel/integration/test_runner/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class TestRunner {
// manually and need full control over the directory persistence.
keep: true,
},
(err, tmpPath) => (err ? reject(err) : resolve(tmpPath)),
(err, tmpPath) => (err ? reject(err) : resolve(path.resolve(tmpPath))),
);
});
}
Expand Down

0 comments on commit d28e5f7

Please sign in to comment.