aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-12-06 19:52:44 +0200
committerGravatar Aliaksandr Valialkin <valyala@gmail.com> 2015-12-06 19:52:44 +0200
commitbb1df8cf707c8b06cbc67c10ab0fd3a14fb02931 (patch)
tree755761440948b90c3f678e00aaeed96e41e6989b /examples
parentPrevent possible file handler leak in FSHandler (diff)
downloadfasthttp-bb1df8cf707c8b06cbc67c10ab0fd3a14fb02931.tar.gz
fasthttp-bb1df8cf707c8b06cbc67c10ab0fd3a14fb02931.tar.bz2
fasthttp-bb1df8cf707c8b06cbc67c10ab0fd3a14fb02931.zip
Get updated fasthttp when building fileserver with make
Diffstat (limited to 'examples')
-rw-r--r--examples/fileserver/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/fileserver/Makefile b/examples/fileserver/Makefile
index f6fbc81..251820b 100644
--- a/examples/fileserver/Makefile
+++ b/examples/fileserver/Makefile
@@ -1,5 +1,6 @@
fileserver: clean
- go build -o fileserver
+ go get -u github.com/valyala/fasthttp
+ go build
clean:
rm -f fileserver