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
Consider this use-case:
/tmp => /.fluence/v1/services/workdir/5c911af0-0e22-4a6c-bdd2-c6a376e2cf69/tmp /tmp/vault => /.fluence/v1/stepper/particles/vault
I want to download file via curl or ipfs and specify output to /tmp/vault/XXX.
/tmp/vault/XXX
So I want to do
let cmd = ["-o", to_host_path("/tmp/vault/XXX")] curl(cmd)
Please note that /tmp/ and /tmp/vault share the same prefix. So to_host_path should choose the longest prefix.
/tmp/
/tmp/vault
to_host_path
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider this use-case:
I want to download file via curl or ipfs and specify output to
/tmp/vault/XXX
.So I want to do
Please note that
/tmp/
and/tmp/vault
share the same prefix. Soto_host_path
should choose the longest prefix.The text was updated successfully, but these errors were encountered: