mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 09:15:49 -05:00
b4d7ecfbf1
Co-authored-by: Zack Koppert <zkoppert@github.com> Co-authored-by: Philip Mallegol-Hansen <philip@mallegolhansen.com>
9 lines
259 B
Bash
Executable file
9 lines
259 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
curl -sLO https://raw.githubusercontent.com/clj-kondo/clj-kondo/master/script/install-clj-kondo
|
|
|
|
chmod +x install-clj-kondo
|
|
|
|
./install-clj-kondo --dir /usr/bin/ --download-dir /usr/bin/ --version "${CLJ_KONDO_VERSION}"
|