mirror of
https://github.com/italicsjenga/mppt-modbus.git
synced 2024-12-23 16:51:30 +11:00
7 lines
133 B
Bash
Executable file
7 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
|