Statement-Converter/scripts/build/build.sh

10 lines
197 B
Bash
Raw Normal View History

2025-04-18 13:04:48 -05:00
# Clearing The Screen
clear
# Building the Rust App
docker run --rm -it \
-v "$PWD/project:/src:Z" \
-v "$PWD/build:/app:Z" \
2025-04-18 15:28:55 -05:00
-e "PROJ_NAME=statement-converter" \
rust-buildbot $@