14 lines
369 B
Bash
Executable File
14 lines
369 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This work is marked with CC0 1.0. To view a copy of this license, visit
|
|
# <http://creativecommons.org/publicdomain/zero/1.0>
|
|
|
|
# Hook to compile Rust source files when they have been changed.
|
|
|
|
for file in \
|
|
$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD |\
|
|
sed -n -e 's/src\///' -e 's/\.rs//p')
|
|
do
|
|
cargo build --release --bin "$file"
|
|
done
|