mirror of
https://github.com/pinout-xyz/Pinout.xyz.git
synced 2024-11-08 17:47:04 +00:00
8 lines
113 B
Bash
Executable File
8 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
|