Skip to content

Commit e6beee4

Browse files
committed
fix: support absolute sourceDirectory
1 parent 1b4b920 commit e6beee4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

runner/orchestration/file-system.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export async function setupProjectStructure(
8080
}
8181

8282
if (env.executor instanceof LocalExecutor && env.executor.config.sourceDirectory) {
83-
const sourceDirectory = join(env.rootPath, env.executor.config.sourceDirectory);
83+
const sourceDirectory = resolve(env.rootPath, env.executor.config.sourceDirectory);
8484

8585
// Push this after the project so the environment's files that precedence.
8686
directoriesToCopy.push(sourceDirectory);

0 commit comments

Comments
 (0)