mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00

This would make the shellcheck related process much more maintainable and make .travis.yml simpler.
12 lines
170 B
Bash
Executable File
12 lines
170 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
for shell in bash sh dash ksh
|
|
do
|
|
shellcheck -s "${shell}" nvm.sh
|
|
done
|
|
|
|
for bash_script in install.sh
|
|
do
|
|
shellcheck -s bash "${bash_script}"
|
|
done
|