Use single-quoted strings in justfile

type: reform
This commit is contained in:
Casey Rodarmor 2020-03-31 00:01:40 -07:00
parent 2515399081
commit f17527e58e
No known key found for this signature in database
GPG Key ID: 556186B153EC6FE0

View File

@ -2,11 +2,11 @@ default: watch
version := `sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/v\1/p' Cargo.toml | head -1`
bt := "0"
bt := '0'
export RUST_BACKTRACE := bt
log := "warn"
log := 'warn'
export RUST_LOG := log