Skip to content

Commit

Permalink
build: only copy fixtures directory if it exists
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Feb 18, 2023
1 parent 948b5ea commit 1a3fe4b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,10 @@ jobs:
mkdir -p cli/docs cli/test
cp README.md LICENSE CONTRIBUTORS NOTICE ./cli
cp -r bin etc ./cli
cp -r test/test.cli.js test/fixtures ./cli/test
cp test/test.cli.js ./cli/test
if [ -d "test/fixtures" ]; then
cp -r test/fixtures ./cli/test
fi
cp docs/usage.txt ./cli/docs

# Install Node.js:
Expand Down

0 comments on commit 1a3fe4b

Please sign in to comment.