9 lines
225 B
Bash
Executable file
9 lines
225 B
Bash
Executable file
#!/bin/bash
|
|
EXPORT_DIR="challenge"
|
|
|
|
mkdir -p $EXPORT_DIR
|
|
rm -rf $EXPORT_DIR/*
|
|
cargo build --release --locked
|
|
cp ./target/release/timars $EXPORT_DIR/timars
|
|
strip $EXPORT_DIR/timars
|
|
cp CHALLENGE-NOTES.txt $EXPORT_DIR/notes.txt
|