diff options
author | 2022-07-14 18:29:40 +0200 | |
---|---|---|
committer | 2022-07-14 18:29:40 +0200 | |
commit | 34b691fdd454823e9c713fe8480b63519c3186c2 (patch) | |
tree | 51e0feac358f0168ba308bfcee4d4d85b67ffbf9 /examples/todos | |
parent | 387b2d09912be8b26cfc775d7922fcf5042a99db (diff) | |
download | iced-34b691fdd454823e9c713fe8480b63519c3186c2.tar.gz iced-34b691fdd454823e9c713fe8480b63519c3186c2.tar.bz2 iced-34b691fdd454823e9c713fe8480b63519c3186c2.zip |
Fix `deb` asset path in `todos` example
Diffstat (limited to 'examples/todos')
-rw-r--r-- | examples/todos/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/todos/Cargo.toml b/examples/todos/Cargo.toml index 5781ddef..5b068c78 100644 --- a/examples/todos/Cargo.toml +++ b/examples/todos/Cargo.toml @@ -20,6 +20,6 @@ wasm-timer = "0.2" [package.metadata.deb] assets = [ - ["target/release/todos", "usr/bin/iced-todos", "755"], + ["target/release-opt/todos", "usr/bin/iced-todos", "755"], ["iced-todos.desktop", "usr/share/applications/", "644"], ] |