Skip to content

Commit

Permalink
rename just install
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Nov 8, 2024
1 parent 2a93f0f commit 65c43f1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/reusable-build-iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,11 @@ jobs:
- name: Install Just
shell: bash
run: |
set -eoux pipefail
curl -sSLO \
https://github.com/casey/just/releases/download/1.36.0/just-1.36.0-x86_64-unknown-linux-musl.tar.gz
tar -zxvf just-1.36.0-x86_64-unknown-linux-musl.tar.gz just
sudo mv just /usr/local/bin/just
rm -f just-1.36.0-x86_64-unknown-linux-musl.tar.gz
set -x
curl -sSLo https://github.com/casey/just/releases/download/1.36.0/just-1.36.0-x86_64-unknown-linux-musl.tar.gz /tmp/just.tar.gz
tar -zxvf /tmp/just.tar.gz -C /tmp just
sudo mv /tmp/just /usr/local/bin/just
rm -f /tmp/just.tar.gz
- name: Check Just Syntax
shell: bash
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,11 @@ jobs:
- name: Install Just
shell: bash
run: |
set -eoux pipefail
curl -sSLO \
https://github.com/casey/just/releases/download/1.36.0/just-1.36.0-x86_64-unknown-linux-musl.tar.gz
tar -zxvf just-1.36.0-x86_64-unknown-linux-musl.tar.gz just
sudo mv just /usr/local/bin/just
rm -f just-1.36.0-x86_64-unknown-linux-musl.tar.gz
set -x
curl -sSLo https://github.com/casey/just/releases/download/1.36.0/just-1.36.0-x86_64-unknown-linux-musl.tar.gz /tmp/just.tar.gz
tar -zxvf /tmp/just.tar.gz -C /tmp just
sudo mv /tmp/just /usr/local/bin/just
rm -f /tmp/just.tar.gz
- name: Check Just Syntax
shell: bash
Expand Down

0 comments on commit 65c43f1

Please sign in to comment.