Initial work on downsampling

The http connection is being closed before sending all data. May have something to do with the Range header
This commit is contained in:
Deluan
2016-03-04 13:12:56 -05:00
parent 9a246b5432
commit 7225807bad
10 changed files with 186 additions and 29 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
gofiles=$(git diff --name-only --diff-filter=ACM | grep '.go$')
[ -z "$gofiles" ] && exit 0
unformatted=$(gofmt -l $gofiles)
[ -z "$unformatted" ] && exit 0
for f in $unformatted; do
go fmt "$f"
done