We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
➜ ~ node -v v18.0.0 ➜ ~ npm -v 8.6.0 ➜ ~ which node /Users/xxxxx/Library/Application Support/fnm/node-versions/v18.0.0/installation/bin/node
Error: Command failed: tar xzf /Users/xxx/Library/Application Support/fnm/node-versions/v18.0.0/installation/lib/node_modules/@openkraken/cli/kraken-darwin-0.10.5.tar.gz -C ./build
In my case, the file directory contains spaces. And you can't execute that command with space. The code is in https://github.com/openkraken/cli/blob/master/install.js#L15
execSync(`tar xzf ${path.join(__dirname, tarName)} -C ./build`, processOptions);
execSync(`tar xzf ${path.join(__dirname, tarName).replace(/ /g, "\\ ")} -C ./build`, processOptions);
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ENV
Error
Reason
In my case, the file directory contains spaces. And you can't execute that command with space.
The code is in https://github.com/openkraken/cli/blob/master/install.js#L15
Suggest to fix
The text was updated successfully, but these errors were encountered: