Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.13 KB

INSTALL.md

File metadata and controls

30 lines (22 loc) · 1.13 KB

Samplr Installation

⚠️ This will override any /usr/local/bin/samplr pre-existing file, which means the same command will be used to update.

Mac OS

curl https://github.com/unmultimedio/samplr/releases/download/v0.2.1/samplr-v0.2.1-mac \
  -L -o /usr/local/bin/samplr && \
  chmod +x /usr/local/bin/samplr

Linux

curl https://github.com/unmultimedio/samplr/releases/download/v0.2.1/samplr-v0.2.1-linux \
  -L -o /usr/local/bin/samplr && \
  chmod +x /usr/local/bin/samplr

From source

You don't want to mess with your secrets files, that's ok. This tool does not record or upload information in any way, binaries are automatically built and added to the releases using Github actions as defined here, but if you want to make extra sure:

  • Install go.
  • Clone this repo and cd into it.
  • Download dependencies with go mod vendor.
  • Go-install it with go install (this places it in $GOPATH/bin).
  • (Optional) Build it with go build an and make it accessible somewhere in your $PATH.
  • The command samplr should be available now, enjoy!