Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
RustyTake-Off committed Jun 29, 2024
1 parent e485e26 commit 84e6d60
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/actions/templates/moveFiles/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ runs:
for item in ${{ inputs.otherDirs }}; do
if [ -d "$item" ]; then
shopt -s dotglob
cp -r "$item"/* .
cp "$item"/* .
# cp -r "$item"/.[!.]* .
shopt -u dotglob
fi
Expand All @@ -88,9 +88,12 @@ runs:
# Clean up
rm -rf ${{ inputs.targetBranchName }}
rm README.md
for item in ${{ inputs.otherSharedFiles }}; do
rm -rf "$item"
done
# for item in ${{ inputs.otherSharedFiles }}; do
# rm -rf "$item"
# done
# for item in ${{ inputs.otherDirs }}; do
# rm -rf "$item"
# done
echo '=========='
Expand Down

0 comments on commit 84e6d60

Please sign in to comment.