]> git.r.bdr.sh - rbdr/lyricli/blob - Scripts/install_swiftlint.sh
4b8299d437cc18e8a02b56405506d3b02f48025f
[rbdr/lyricli] / Scripts / install_swiftlint.sh
1 #!/bin/bash
2
3 # Installs SwiftLint from source (Intended to be used with
4 # swift docker image)
5
6 set -e
7
8 git clone https://github.com/realm/SwiftLint.git /tmp/SwiftLint &&
9 cd /tmp/SwiftLint &&
10 git submodule update --init --recursive &&
11 make install