mirror of
https://github.com/encounter/wasmtime.git
synced 2026-03-30 11:42:15 -07:00
13 lines
216 B
Bash
Executable File
13 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
# Format all sources using rustfmt.
|
|
|
|
topdir=$(dirname "$0")/..
|
|
cd "$topdir"
|
|
|
|
# Make sure we can find rustfmt.
|
|
export PATH="$PATH:$HOME/.cargo/bin"
|
|
|
|
exec cargo +stable fmt --all -- "$@"
|