Skip to content

Commit

Permalink
docs: add example of pinning plcc to version using GitPod
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneyJackson authored May 25, 2024
1 parent 17db76e commit bd01f89
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,12 @@ image: gitpod/workspace-full:latest
tasks:
- name: Install PLCC
command: |
/bin/bash -c "$(\
\curl -fsSL https://github.com/ourPLCC/plcc/raw/main/installers/plcc/install.bash \
)" >> ~/.bashrc
# To pin to a specific version of PLCC,
# in the next line, change main to something like v8.0.1
PLCC_GIT_BRANCH=main
/bin/bash -c \
"$(\curl -fsSL https://github.com/ourPLCC/plcc/raw/main/installers/plcc/install.bash)" \
>> ~/.bashrc
exec bash
```
Expand Down

0 comments on commit bd01f89

Please sign in to comment.