mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2026-03-29 12:49:51 +00:00
7 lines
362 B
Bash
Executable File
7 lines
362 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for os in archlinux debian-13-trixie debian-13-trixie-arm64 debian-13-trixie-armhf debian-14-forky fedora-41 fedora-42 fedora-43 homebrew kali opensuse-leap opensuse-tumbleweed parrot-core-latest ubuntu-24.04 ubuntu-24.10 ubuntu-25.04; do
|
|
echo -e "\n\n================= Building for $os ======================\n"
|
|
( cd $os && ../build.sh )
|
|
done
|