Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ppa-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ jobs:
[source.vendored-sources]
directory = "vendor"
EOF
cargo vendor vendor/
# --no-delete preserves the git-tracked vendor/aqua-registry/ directory
# (consumed by build.rs); without it, cargo vendor wipes the directory.
cargo vendor --no-delete vendor/

# Clear all vendor checksums — dpkg-source strips .o, .a, .git*, *.orig and
# other files, which breaks cargo's checksum verification. With --frozen cargo
Expand Down
Loading