We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 253ed65 commit a01e167Copy full SHA for a01e167
linux-rust/Justfile
@@ -52,7 +52,7 @@ build-appimage: build prepare bundle
52
echo "Done!"
53
54
55
-tarball:
+tarball version:
56
#!/usr/bin/env bash
57
set -euo pipefail
58
cargo vendor vendor
@@ -63,9 +63,8 @@ tarball:
63
[source.vendored-sources]
64
directory = "vendor"
65
EOF
66
- VERSION="${1:-local}"
67
- TAR="librepods-v${VERSION}-source.tar.gz"
+ TAR="librepods-v{{version}}-source.tar.gz"
68
tar -czf "dist/${TAR}" \
69
- --transform "s,^,librepods-v${VERSION}/," \
+ --transform "s,^,librepods-v{{version}}/," \
70
Cargo.toml Cargo.lock src vendor .cargo assets flatpak
71
echo "Created: dist/${TAR}"
0 commit comments