Skip to content

Commit

Permalink
doc: show bin/ instead of sbin/ path (#12)
Browse files Browse the repository at this point in the history
`sbin` is for "*programs for system administration*", `minify` doesn't
need this.

Source:
https://askubuntu.com/questions/308045/differences-between-bin-sbin-usr-bin-usr-sbin-usr-local-bin-usr-local/1045759#1045759

On Ubuntu 24.04, `apt install minify` create a binary in
`/usr/bin/minify`, so `/usr/local/bin/` (or `/usr/bin/`) will be closer
to the actual path.
  • Loading branch information
alexislefebvre authored Oct 27, 2024
1 parent 5a07acd commit 655f29e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,9 +185,9 @@ sensiolabs_minify:
# set it to 'auto' to let the bundle try to find the location of the binary
local_binary: 'auto'

# you can also define the path to the binary explicitly, but this won't work
# you can also define the path to the binary explicitly, but this won't work
# if you run the application in multiple servers with different binary locations
local_binary: "/usr/local/sbin/minify"
local_binary: "/usr/local/bin/minify"
```
## Credits
Expand Down

0 comments on commit 655f29e

Please sign in to comment.