Skip to content

Commit

Permalink
fix(core): stay in filesystem root so source paths make sense
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Barr authored and edvald committed Oct 19, 2020
1 parent 3daaffa commit 4b43703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/kubernetes/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ export async function runAndCopy({
// Tarball the requested files and stream to the above extractor.
runner
.exec({
command: ["sh", "-c", "cd /tmp && touch .DS_Store && " + tarCmd.join(" ")],
command: ["sh", "-c", "cd / && touch /tmp/.DS_Store && " + tarCmd.join(" ")],
containerName: mainContainerName,
log,
stdout: extractor,
Expand Down

0 comments on commit 4b43703

Please sign in to comment.