Skip to content

Commit

Permalink
fix(ci): should run checkout-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
PVermeer committed Jan 12, 2025
1 parent 8db7575 commit e792a8a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions scripts/checkout-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,13 @@ source ./scripts/update-rpm.sh
# Checkout commits
echo -e "\n=== Checking out submodules ===\n"

echo -e "$main_repo: $(cd "./$main_repo" && git reset --hard $current_main_commit)"
echo -e "$dep_repo: $(cd "./$dep_repo" && git reset --hard $current_dep_commit)"
git submodule update --init --recursive

echo -e "\nSubmodule <$main_repo>:"
(cd "./$main_repo" && git reset --hard $current_main_commit)

echo -e "\nSubmodule <$dep_repo>:"
(cd "./$dep_repo" && git reset --hard $current_dep_commit)

echo -e "\n"

Expand Down

0 comments on commit e792a8a

Please sign in to comment.