diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2017-03-14 01:06:28 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2017-03-14 01:06:28 +0100 |
commit | d84b462a711ce95593ff05a7581e722562c3835a (patch) | |
tree | 41e5af455fea925b2680b29718b24ba2876e803a /static | |
download | bar-d84b462a711ce95593ff05a7581e722562c3835a.tar bar-d84b462a711ce95593ff05a7581e722562c3835a.tar.gz bar-d84b462a711ce95593ff05a7581e722562c3835a.tar.bz2 bar-d84b462a711ce95593ff05a7581e722562c3835a.tar.xz bar-d84b462a711ce95593ff05a7581e722562c3835a.zip |
Implement old bar.hs
Diffstat (limited to 'static')
-rw-r--r-- | static/jquery.js.gup | 3 | ||||
-rw-r--r-- | static/webshim.gup | 6 |
2 files changed, 9 insertions, 0 deletions
diff --git a/static/jquery.js.gup b/static/jquery.js.gup new file mode 100644 index 0000000..b6db680 --- /dev/null +++ b/static/jquery.js.gup | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/usr/bin/env zsh | ||
2 | |||
3 | curl -Ls "https://cdn.jsdelivr.net/jquery/3.1.1/jquery.js" >$1 \ No newline at end of file | ||
diff --git a/static/webshim.gup b/static/webshim.gup new file mode 100644 index 0000000..f9e205c --- /dev/null +++ b/static/webshim.gup | |||
@@ -0,0 +1,6 @@ | |||
1 | #!/usr/bin/env zsh | ||
2 | |||
3 | mkdir -p ${1} | ||
4 | |||
5 | version="1.16.0" | ||
6 | curl -Ls "https://github.com/aFarkas/webshim/archive/${version}.tar.gz" | tar -C ${1} -xz --strip-components=3 webshim-${version}/js-webshim/dev/ | ||