8 lines
211 B
Bash
Executable file
8 lines
211 B
Bash
Executable file
#!/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
|
|
|