4 lines
162 B
Bash
Executable file
4 lines
162 B
Bash
Executable file
#!/bin/bash
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
cd $SCRIPT_DIR
|
|
cargo run --release --locked --offline -- --verbose $@
|