@@ -16,10 +16,12 @@ This guide covers common issues you might encounter when using **b** and their s
1616** Solution** :
1717``` bash
1818# Make sure you have write permissions to the installation directory
19- sudo curl -sSL https://github.com/fentas/b/releases/latest/download/install.sh | bash
19+ # https://github.com/fentas/b/releases/latest/download/install.sh
20+ sudo curl -sSL https://get.binary.help | bash
2021
2122# Or install to a user directory
22- curl -sSL https://github.com/fentas/b/releases/latest/download/install.sh | bash -s -- --prefix=$HOME /.local
23+ # https://github.com/fentas/b/releases/latest/download/install.sh
24+ curl -sSL https://get.binary.help | bash -s -- --prefix=$HOME /.local
2325```
2426
2527### Command Not Found
@@ -269,7 +271,7 @@ b update --strategy=client
269271steps:
270272 - name: Install b
271273 run: |
272- curl -sSL https://github.com/fentas/b/releases/latest/download/install.sh | bash
274+ curl -sSL https://get.binary.help | bash
273275 echo "$HOME/.local/bin" >> $GITHUB_PATH
274276
275277 - name: Verify b installation
@@ -286,13 +288,13 @@ steps:
286288**Solution**:
287289` ` ` dockerfile
288290# Install b in Dockerfile
289- RUN curl -sSL https://github.com/fentas/b/releases/latest/download/install.sh | bash
291+ RUN curl -sSL https://get.binary.help | bash
290292ENV PATH="/root/.local/bin:$PATH"
291293
292294# Or use multi-stage build
293295FROM alpine AS b-installer
294296RUN apk add --no-cache curl
295- RUN curl -sSL https://github.com/fentas/b/releases/latest/download/install.sh | bash
297+ RUN curl -sSL https://get.binary.help | bash
296298
297299FROM alpine
298300COPY --from=b-installer /root/.local/bin/b /usr/local/bin/b
0 commit comments