Skip to content

Commit

Permalink
Fix find for linux (#725)
Browse files Browse the repository at this point in the history
  • Loading branch information
samarsault committed Mar 28, 2023
1 parent 2774582 commit e6084a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -35,7 +35,7 @@ jobs:
cd /tmp
git clone --branch ${{ github.event.inputs.branch }} --depth 1 https://github.com/percy/cli
cd cli
PERCY_PACKAGES=`find packages -type d -depth 1 | sed -e 's/packages/@percy/g' | tr '\n' ' '`
PERCY_PACKAGES=`find packages -mindepth 1 -maxdepth 1 -type d | sed -e 's/packages/@percy/g' | tr '\n' ' '`
git log -1
yarn
yarn build
Expand Down

0 comments on commit e6084a5

Please sign in to comment.