mirror of
https://github.com/italicsjenga/mppt-modbus.git
synced 2025-01-29 02:26:38 +11:00
6 lines
133 B
Bash
Executable file
6 lines
133 B
Bash
Executable file
#!/bin/bash
|
|
archs=(x86_64-unknown-linux-gnu aarch64-unknown-linux-gnu)
|
|
for i in "${archs[@]}"
|
|
do
|
|
cargo deb --target=$i -o debs
|
|
done
|