Implement history, show operations, implement trash
This commit is contained in:
parent
004fd617ea
commit
12a2a39a9f
6 changed files with 344 additions and 119 deletions
10
justfile
10
justfile
|
|
@ -46,9 +46,17 @@ check *args:
|
|||
# Runs a clippy check with JSON message format
|
||||
check-json: (check '--message-format=json')
|
||||
|
||||
# Developer target
|
||||
dev *args:
|
||||
cargo fmt
|
||||
cargo test
|
||||
cargo build --profile release-with-debug
|
||||
env RUST_LOG=cosmic_files=debug RUST_BACKTRACE=full target/release-with-debug/cosmic-files {{args}}
|
||||
|
||||
# Run with debug logs
|
||||
run *args:
|
||||
env RUST_LOG=cosmic_files=debug RUST_BACKTRACE=full cargo run --release {{args}}
|
||||
cargo build --release
|
||||
env RUST_LOG=cosmic_files=debug RUST_BACKTRACE=full target/release/cosmic-files {{args}}
|
||||
|
||||
# Installs files
|
||||
install:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue