aboutsummaryrefslogtreecommitdiff
path: root/download-deps
blob: 7cb06d1bde34815847699ba4fc87773e5f126961 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

test -f v4.7.0.tar.gz || curl -sOL https://github.com/staaky/tipped/archive/v4.7.0.tar.gz
test -d static/tipped-4.7.0/ || tar xf v4.7.0.tar.gz  -C static  tipped-4.7.0/dist/

jquery="jquery-3.1.1.min.js"
test -f "static/$jquery" || {
	cd static
	curl -sOL "https://code.jquery.com/$jquery"
}