Skip to content

Commit

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

#
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +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/ ; \
fi ; \
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 3bde511

Please sign in to comment.