aboutsummaryrefslogtreecommitdiff
path: root/Scripts/install_swiftlint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/install_swiftlint.sh')
-rwxr-xr-xScripts/install_swiftlint.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/Scripts/install_swiftlint.sh b/Scripts/install_swiftlint.sh
deleted file mode 100755
index 4b8299d..0000000
--- a/Scripts/install_swiftlint.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-# Installs SwiftLint from source (Intended to be used with
-# swift docker image)
-
-set -e
-
-git clone https://github.com/realm/SwiftLint.git /tmp/SwiftLint &&
-cd /tmp/SwiftLint &&
-git submodule update --init --recursive &&
-make install