Skip to content

Commit

Permalink
Release 1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sgreben committed Mar 10, 2020
1 parent c9c91ac commit 0493996
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 1.5.2
VERSION = 1.5.3

APP := http-file-server
PACKAGES := $(shell go list -f {{.Dir}} ./...)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- [Serving $PWD at `/`](#serving-pwd-at-)
- [Serving multiple paths, setting the HTTP port via CLI arguments](#serving-multiple-paths-setting-the-http-port-via-cli-arguments)
- [Setting the HTTP port via environment variables](#setting-the-http-port-via-environment-variables)
- [Uploading files using cURL](#uploading-files-using-curl)
- [Uploading files using cURL](#uploading-files-using-curl)
- [Get it](#get-it)
- [Using `go get`](#using-go-get)
- [Pre-built binary](#pre-built-binary)
Expand Down Expand Up @@ -59,7 +59,7 @@ $ http-file-server /abc/def/ghi=/tmp
2018/11/13 23:05:52 http-file-server listening on ":9999"
```

#### Uploading files using cURL
### Uploading files using cURL

```sh
$ ./http-file-server -uploads /=/path/to/serve
Expand All @@ -85,14 +85,14 @@ Or [download a binary](https://github.com/sgreben/http-file-server/releases/late

```sh
# Linux
curl -L https://github.com/sgreben/http-file-server/releases/download/1.5.2/http-file-server_1.5.2_linux_x86_64.tar.gz | tar xz
curl -L https://github.com/sgreben/http-file-server/releases/download/1.5.3/http-file-server_1.5.3_linux_x86_64.tar.gz | tar xz

# OS X
curl -L https://github.com/sgreben/http-file-server/releases/download/1.5.2/http-file-server_1.5.2_osx_x86_64.tar.gz | tar xz
curl -L https://github.com/sgreben/http-file-server/releases/download/1.5.3/http-file-server_1.5.3_osx_x86_64.tar.gz | tar xz

# Windows
curl -LO https://github.com/sgreben/http-file-server/releases/download/1.5.2/http-file-server_1.5.2_windows_x86_64.zip
unzip http-file-server_1.5.2_windows_x86_64.zip
curl -LO https://github.com/sgreben/http-file-server/releases/download/1.5.3/http-file-server_1.5.3_windows_x86_64.zip
unzip http-file-server_1.5.3_windows_x86_64.zip
```

## Use it
Expand Down
4 changes: 2 additions & 2 deletions README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
- [Serving $PWD at `/`](#serving-pwd-at-)
- [Serving multiple paths, setting the HTTP port via CLI arguments](#serving-multiple-paths-setting-the-http-port-via-cli-arguments)
- [Setting the HTTP port via environment variables](#setting-the-http-port-via-environment-variables)
- [Uploading files using cURL](#uploading-files-using-curl)
- [Uploading files using cURL](#uploading-files-using-curl)
- [Get it](#get-it)
- [Using `go get`](#using-go-get)
- [Pre-built binary](#pre-built-binary)
Expand Down Expand Up @@ -59,7 +59,7 @@ $ http-file-server /abc/def/ghi=/tmp
2018/11/13 23:05:52 http-file-server listening on ":9999"
```

#### Uploading files using cURL
### Uploading files using cURL

```sh
$ ./http-file-server -uploads /=/path/to/serve
Expand Down

0 comments on commit 0493996

Please sign in to comment.