blob: f94fb53da150d4abd91d5d1da0a5a54c2cc32a73 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash
# Installs SourceKitten from source (Intended to be used with
# swift docker image)
set -e
git clone https://github.com/jpsim/SourceKitten.git /tmp/SourceKitten &&
cd /tmp/SourceKitten &&
make install
|