From 1fc1e59a63a80f967bf58d43d23fb44f1cbda872 Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Tue, 7 Nov 2023 09:18:53 -0600 Subject: [PATCH 1/3] Update installation instructions Signed-off-by: cicdguy <26552821+cicdguy@users.noreply.github.com> --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c3cf117..7c07ce1 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,16 @@ Given the input list of git repositories containing the R packages, as well as a list of R package repositories (e.g. in a package manager, CRAN, BioConductor etc.), `locksmith` will try to determine the list of all dependencies and their versions required to make the input list of packages work. It will then save the result in an `renv.lock`-compatible file. -## Installing +## Installation Simply download the project for your distribution from the [releases](https://github.com/insightsengineering/locksmith/releases) page. `locksmith` is distributed as a single binary file and does not require any additional system requirements. +Alternatively, you can install the latest version by running: + +``` +go install github.com/insightsengineering/locksmith@latest +``` + ## Usage `locksmith` is a command line utility, so after installing the binary in your `PATH`, simply run the following command to view its capabilities: From 7bf479adc3fcd281fc7682142978e7f8c174b51b Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Tue, 7 Nov 2023 09:25:56 -0600 Subject: [PATCH 2/3] Fix lint --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c07ce1..8f21d10 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Simply download the project for your distribution from the [releases](https://gi Alternatively, you can install the latest version by running: -``` +```shell go install github.com/insightsengineering/locksmith@latest ``` From 07a4d4118f83839406a6b90356c058c806354bbc Mon Sep 17 00:00:00 2001 From: cicdguy <26552821+cicdguy@users.noreply.github.com> Date: Tue, 7 Nov 2023 09:29:57 -0600 Subject: [PATCH 3/3] Also enable Windows releases --- .goreleaser.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 7cb2802..54977e9 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -11,6 +11,7 @@ builds: goos: - linux - darwin + - windows goarch: - amd64 - arm64