mirror of
https://github.com/gbdev/rgbds.git
synced 2026-08-20 13:54:33 +00:00
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
bash --version
|
|
zsh --version
|
|
|
|
find contrib -type f \( -name '*.sh' -o -name '*.bash' \) -exec bash --norc -n {} \;
|
|
find contrib/zsh_compl -type f -name '_rgb*' -exec zsh -n {} \;
|