mirror of
https://github.com/pinout-xyz/Pinout.xyz.git
synced 2025-03-14 13:12:49 +00:00
7 lines
113 B
Bash
Executable file
7 lines
113 B
Bash
Executable file
#!/bin/bash
|
|
for d in src/??; do
|
|
if [ -d $d ]; then
|
|
l=$(basename $d)
|
|
make LANG=$l
|
|
fi
|
|
done
|