blob: 78f9f39942d1efbebdae0282c974c875d07a08fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
#
# This script is used to compile your program on CodeCrafters
#
# This runs before .codecrafters/run.sh
#
# Learn more: https://codecrafters.io/program-interface
set -e # Exit on failure
cargo build --release --target-dir=/tmp/codecrafters-build-redis-rust --manifest-path Cargo.toml
|