-
-
Notifications
You must be signed in to change notification settings - Fork 825
New issue
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
Bundle error on Linux: dx bundle copy the dist/bundle into itself endlessly #2239
Comments
the same happens here on Arch |
Yeah, it don't really make sens for it to be specific to fedora if the pkg manager is not involved. |
For the fedora part, I suspected that it wasn't linked to SELinux being activated or other tweaks, but I did not try on other distros. I tried to change the current way bundle_settings.resources is set to filter the bundle folder, and it now fails later on |
(EDIT: resolved by not using this might be related: every time I run
and in the parent directory:
my config: # ❯ grep -v '^#' Dioxus.toml | grep .
[application]
name = "timeline-editor"
default_platform = "web"
asset_dir = "."
[web.app]
title = "ouuuhhh"
[web.watcher]
reload_html = true
watch_path = ["src", "."]
[web.resource]
style = ["tailwind.css"]
script = []
[web.resource.dev]
script = [] |
Problem
If i try to bundle a project, I get the following error:
in Dioxius the out_dir is "dist" and looking into the content of
dist/bundle
there is a recursive patern:packages/cli/dist/bundle/deb/dx_0.5.4_amd64/data/usr/lib/dx/dist/bundle/deb/dx_0.5.4_amd64/data/usr/lib/dx/dist/bundle/deb/dx_0.5.4_amd64/data/usr/lib/dx/dist/bundle/deb/dx_0.5.4_amd64/data/usr/lib/dx/dist/bundle
it seems that during the bundle process, bundle try to copy the
out_dir
content intoout_dir/bundle
but doesn't ignore the content ofout_dir/bundle
itselfSteps To Reproduce
Steps to reproduce the behavior:
packages/cli
cargo run -- bundle
for the context, I first tried to bundle a project of my own
Expected behavior
AppImage and other bundle files being generated
Environment:
desktop
Questionnaire
The text was updated successfully, but these errors were encountered: