Skip to content

Commit

Permalink
ci: 👷 update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ivaquero committed Nov 2, 2024
1 parent 1e78e16 commit f42d2ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand All @@ -33,7 +33,7 @@ jobs:
matrix:
os: [ubuntu-latest, ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand All @@ -49,7 +49,7 @@ jobs:
matrix:
os: [windows-latest, windows-2019]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Test on Windows
run: |
$env:OXIDIZER = '.'
Expand Down
4 changes: 2 additions & 2 deletions oxidizer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ upox() {
# fzf
##########################################################

if test "$(command -v fzf)"; then
if command -v fzf >/dev/null 2>&1; then
case ${SHELL} in
*zsh)
source <(fzf --zsh)
Expand All @@ -159,7 +159,7 @@ fi
# Starship
##########################################################

if test "$(command -v starship)"; then
if command -v starship >/dev/null 2>&1; then
# system files
export STARSHIP_CONFIG=${HOME}/.config/starship.toml
OX_ELEMENT[ss]=${STARSHIP_CONFIG}
Expand Down

0 comments on commit f42d2ec

Please sign in to comment.