9 lines
156 B
Bash
Executable File
9 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
# RUST_LOG=info cargo run --release
|
|
|
|
RUST_LOG=info cargo run --release --config 'target."cfg(all())".runner="sudo -E"'
|