Skip to content

Commit

Permalink
fix CI (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
shunk031 authored Feb 12, 2024
1 parent cb7e9ee commit 81e825f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/layout_alignment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
git -C ${DST_DIR} add README.md layout_alignment.py requirements.txt
if git diff --cached --quiet; then
if git -C ${DST_DIR} diff --cached --quiet; then
echo "No changes to commit"
else
msg=$(git -C ${SRC_DIR} rev-parse HEAD)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/layout_average_iou.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
git -C ${DST_DIR} add README.md layout_average_iou.py requirements.txt
if git diff --cached --quiet; then
if git -C ${DST_DIR} diff --cached --quiet; then
echo "No changes to commit"
else
msg=$(git -C ${SRC_DIR} rev-parse HEAD)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/layout_generative_model_scores.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
git -C ${DST_DIR} add README.md layout_generative_model_scores.py requirements.txt
if git diff --cached --quiet; then
if git -C ${DST_DIR} diff --cached --quiet; then
echo "No changes to commit"
else
msg=$(git -C ${SRC_DIR} rev-parse HEAD)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/layout_maximum_iou.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
git -C ${DST_DIR} add README.md layout_maximum_iou.py requirements.txt
if git diff --cached --quiet; then
if git -C ${DST_DIR} diff --cached --quiet; then
echo "No changes to commit"
else
msg=$(git -C ${SRC_DIR} rev-parse HEAD)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/layout_overlap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
git -C ${DST_DIR} add README.md layout_overlap.py requirements.txt
if git diff --cached --quiet; then
if git -C ${DST_DIR} diff --cached --quiet; then
echo "No changes to commit"
else
msg=$(git -C ${SRC_DIR} rev-parse HEAD)
Expand Down

0 comments on commit 81e825f

Please sign in to comment.