@@ -20,7 +20,7 @@ and update issues without leaving your terminal.
2020
2121image::cinemas/listings.cinema.gif[]
2222
23- This is an Elixir/OTP port of https://github.com/rubyists/linear-cli[linear-cli]
23+ This is an Elixir/OTP port of https://github.com/rubyists/linear-cli-rb [linear-cli-rb ]
2424(the original Ruby CLI): same commands, same wrapper scripts (`lcls` ,
2525`lcreate` , ... ), but shipped as a single standalone binary - no Ruby runtime
2626or gem install - via https://github.com/burrito-elixir/burrito[Burrito], and
@@ -36,8 +36,8 @@ You can run the CLI from the container image without installing anything.
3636
3737[source,sh]
3838----
39- $ podman run --rm -e LINEAR_CLI_DAEMON= -e LINEAR_API_KEY="$LINEAR_API_KEY" ghcr.io/rubyists/linear-cli-ex :v0 lcls <1>
40- $ docker run --rm -e LINEAR_CLI_DAEMON= -e LINEAR_API_KEY="$LINEAR_API_KEY" ghcr.io/rubyists/linear-cli-ex :v0 lcls <2>
39+ $ podman run --rm -e LINEAR_CLI_DAEMON= -e LINEAR_API_KEY="$LINEAR_API_KEY" ghcr.io/rubyists/linear-cli:v0 lcls <1>
40+ $ docker run --rm -e LINEAR_CLI_DAEMON= -e LINEAR_API_KEY="$LINEAR_API_KEY" ghcr.io/rubyists/linear-cli:v0 lcls <2>
4141----
4242<1> Podman usage
4343<2> Docker usage - `:v0` tracks the latest 0.x release; pin `:v0.1.2` (or whichever version) for a fixed image
@@ -50,16 +50,16 @@ to an empty value (as above) for one-off interactive CLI usage - otherwise
5050=== Download a release binary (Most should use this)
5151
5252Grab the tarball for your platform from the
53- https://github.com/rubyists/linear-cli-ex /releases[latest release] - macOS
53+ https://github.com/rubyists/linear-cli/releases[latest release] - macOS
5454(Apple Silicon), Linux (x86_64), and Windows (x86_64) are all built as
5555standalone executables with no Erlang/Elixir install required. Each tarball
5656bundles `lc` with the wrapper scripts (`lcreate`, `lcls`, `lclose`,
5757`lcomment`, `lproj`).
5858
5959[source,sh]
6060----
61- $ curl -sLO https://github.com/rubyists/linear-cli-ex /releases/latest/download/lc_macos_aarch64.tar.gz
62- $ curl -sLo SHA256SUMS https://github.com/rubyists/linear-cli-ex /releases/latest/download/SHA256SUMS
61+ $ curl -sLO https://github.com/rubyists/linear-cli/releases/latest/download/lc_macos_aarch64.tar.gz
62+ $ curl -sLo SHA256SUMS https://github.com/rubyists/linear-cli/releases/latest/download/SHA256SUMS
6363$ grep -q lc_macos_aarch64.tar.gz SHA256SUMS && grep lc_macos_aarch64.tar.gz SHA256SUMS | shasum -a 256 -c - <1>
6464$ mkdir lc && tar -xzf lc_macos_aarch64.tar.gz -C lc
6565$ sudo mv lc/* /usr/local/bin/
@@ -94,7 +94,7 @@ See https://github.com/rubyists/homebrew-tap for the formula itself.
9494
9595[source,sh]
9696----
97- $ curl -fsSL https://raw.githubusercontent.com/rubyists/linear-cli-ex /main/install.sh | bash
97+ $ curl -fsSL https://raw.githubusercontent.com/rubyists/linear-cli/main/install.sh | bash
9898----
9999
100100Detects your platform, downloads and checksum-verifies the matching release
@@ -106,7 +106,7 @@ specific install directory.
106106
107107[source,sh]
108108----
109- $ curl -fsSL https://raw.githubusercontent.com/rubyists/linear-cli-ex /main/uninstall.sh | bash
109+ $ curl -fsSL https://raw.githubusercontent.com/rubyists/linear-cli/main/uninstall.sh | bash
110110----
111111
112112Removes exactly what `install.sh` installed, by replaying the manifest it
@@ -116,8 +116,8 @@ wrote - not a guess at where things ended up.
116116
117117[source,sh]
118118----
119- $ git clone https://github.com/rubyists/linear-cli-ex .git
120- $ cd linear-cli-ex /app
119+ $ git clone https://github.com/rubyists/linear-cli.git
120+ $ cd linear-cli/app
121121$ mise install
122122$ mise exec -- mix deps.get
123123$ mise exec -- env MIX_ENV=prod mix release lc
0 commit comments