generated from OBJNULL/Dockerized-Rust
9 lines
184 B
Bash
9 lines
184 B
Bash
|
|
# Clearing The Screen
|
||
|
|
clear
|
||
|
|
|
||
|
|
# Building the Rust App
|
||
|
|
docker run --rm -it \
|
||
|
|
-v "$PWD/project:/src:Z" \
|
||
|
|
-v "$PWD/build:/app:Z" \
|
||
|
|
-e "PROJ_NAME=example" \
|
||
|
|
rust-buildbot $@
|