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