Skip to content

Commit

Permalink
fix detection
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrue committed Aug 31, 2024
1 parent 7476c47 commit dc4b192
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/check-bioc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,14 @@ jobs:
- name: Install and run tree
run: |
brew install tree
tree ~
if [ -d ~/.R ]
then
ls -a ~/.R
fi
- name: Install and run tree
run: |
if [ ! -f ~/.R/Makevars ]
if [ -f ~/.R/Makevars ]
then
cat ~/.R/Makevars
fi
Expand Down

0 comments on commit dc4b192

Please sign in to comment.