mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-04-10 12:16:52 +00:00
10 lines
167 B
Bash
Executable File
10 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -u
|
|
|
|
# Install 'shfmt 3.7.x'
|
|
curl -fsS https://webi.sh/shfmt@3.7 | sh
|
|
|
|
# Install 'shellcheck v0.9.x'
|
|
curl -fsS https://webi.sh/shellcheck@0.9 | sh
|