Skip to content

Commit a1eb29c

Browse files
0xfalafelhfiguiere
authored andcommitted
fix typo in the flatpak manifest + release is used instead of debug
1 parent 6f611f1 commit a1eb29c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

cargo/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The output file should be added to the manifest like
2929
"build-commands": [
3030
"cargo --offline fetch --manifest-path Cargo.toml --verbose",
3131
"cargo --offline build --release --verbose",
32-
"install -Dm755 ./target/debug/quickstart -t /app/bin/"
32+
"install -Dm755 ./target/release/quickstart -t /app/bin/"
3333
],
3434
"sources": [
3535
{
@@ -45,3 +45,4 @@ Make sure to override CARGO_HOME env variable to point it to `/run/build/$module
4545

4646

4747
For a complete example see the quickstart project.
48+

cargo/quickstart/com.flatpak.quickstart.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"build-commands": [
2626
"cargo --offline fetch --manifest-path Cargo.toml --verbose",
2727
"cargo --offline build --release --verbose",
28-
"install -Dm755 ./target/debug/qucikstart -t /app/bin/"
28+
"install -Dm755 ./target/release/quickstart -t /app/bin/"
2929
],
3030
"sources": [{
3131
"type": "dir",

0 commit comments

Comments
 (0)