9 lines
211 B
Bash
9 lines
211 B
Bash
|
#!/bin/sh
|
||
|
printf "Entering build directory\n"
|
||
|
cd in_development/rust/osupdater/
|
||
|
printf "Building osupdater\n"
|
||
|
cargo build -r
|
||
|
printf "Copying binary to git root\n"
|
||
|
cp target/release/osupdater ../../../osupdater
|
||
|
|