10 lines
371 B
Bash
Executable File
10 lines
371 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cargo build --target armv7-unknown-linux-gnueabihf --release
|
|
cp target/armv7-unknown-linux-gnueabihf/release/rusty_home rest2influx-armhf/usr/bin/rest2influx
|
|
dpkg-deb --root-owner-group --build rest2influx-armhf/
|
|
|
|
cargo build --release
|
|
cp target/release/rusty_home rest2influx-amd64/usr/bin/rest2influx
|
|
dpkg-deb --root-owner-group --build rest2influx-amd64/
|