Skip to content

Commit

Permalink
Correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSagan committed Jul 16, 2024
1 parent bfe37bc commit 07a46ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,9 @@ jobs:
- name: Move External Dependencies
run: |
for dep in ~/external_packages/*; \
do if [ $dep != "README.md" ]; then \
cp -r $dep $GITHUB_WORKSPACE/; \
do if [ $dep != "README.md" ] ; \
then cp -r $dep $GITHUB_WORKSPACE/ ; \
fi ; \
done

#
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ jobs:
- name: Move External packages
run: |
echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
for dep in ~/external_packages/*; \
do if [ $dep != "README.md" ]; then \
cp -r $dep $GITHUB_WORKSPACE/; \
for dep in ~/external_packages/* ; \
do if [ $dep != "README.md" ] ; \
then cp -r $dep $GITHUB_WORKSPACE/ ; \
fi ; \
done

- name: Assemble Tarball
Expand Down

0 comments on commit 07a46ca

Please sign in to comment.