Skip to content

Commit

Permalink
fix: add dir
Browse files Browse the repository at this point in the history
  • Loading branch information
arnoweiss committed Dec 16, 2024
1 parent d15c2b2 commit 7516c97
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/scripts/checkout-tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ do
mv ./decentralized-claims-protocol/* .
cd ..
done
pwd
for dir in */; do
if [ -f "$dir/index.html" ]; then
echo "index exists."
mkdir -p resources
cp -r artifacts/src/main/resources/* resources
rm -rf artifacts
mkdir -p $dir/resources
cp -r $dir/artifacts/src/main/resources/* $dir/resources
rm -rf $dir/artifacts
else
echo "index does not exist. No copy operations"
fi
Expand Down

0 comments on commit 7516c97

Please sign in to comment.