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
package_dir = "./"
This is issue is similar to #610 but concerns pkg_mkdir instead of pkg_mklink.
pkg_mkdir
pkg_mklink
load("@rules_pkg//:pkg.bzl", "pkg_tar") load("@rules_pkg//:mappings.bzl", "pkg_mkdirs", "pkg_files") pkg_files( name = "myfile_pkg", srcs = ["myfile"], ) pkg_mkdirs( name = "mydir", dirs = ["mydir"], ) pkg_tar( name = "myarchive", srcs = ["myfile_pkg", "mydir"], package_dir = "." )
invoking
bazel build myarchive.tar tar tf bazel-bin/myarchive.tar
returns:
mydir/ ./myfile
and not:
./mydir/ ./myfile
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is issue is similar to #610 but concerns
pkg_mkdir
instead ofpkg_mklink
.How to reproduce
invoking
returns:
and not:
The text was updated successfully, but these errors were encountered: