Skip to content

Commit

Permalink
Merge pull request #184 from taskcluster/fix-run-locally
Browse files Browse the repository at this point in the history
Use .zst
  • Loading branch information
jonasfj committed Dec 16, 2016
2 parents 04c1db8 + e26e1c5 commit 8e4bff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/ui/taskinfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ const TaskInfo = React.createClass({

imagePullCmds.push('# Image appears to be a task image');
imagePullCmds.push('# Download image tarball from task');
if (ext === 'zst') {
if (ext === '.zst') {
imagePullCmds.push('# TODO: Install zstd > 1.0.0 from: https://github.com/facebook/zstd/releases');
imagePullCmds.push(`curl -L https://queue.taskcluster.net/v1/task/${imageTaskId}/artifacts/${imagePath} | zstd -d > image.tar`);
} else {
Expand Down

0 comments on commit 8e4bff2

Please sign in to comment.