If you run a command like task snapshot:archive o=archive.tar.xz, the archive gets created in /tmp/<something>. As a caller, you don't know what <something> is so you can't get the archive. This can be worked around if you use an absolute path for o=, but this PR should fix it so relative paths work too.
If you run a command like
task snapshot:archive o=archive.tar.xz
, the archive gets created in/tmp/<something>
. As a caller, you don't know what<something>
is so you can't get the archive. This can be worked around if you use an absolute path foro=
, but this PR should fix it so relative paths work too.