Skip to content

Commit e144e4a

Browse files
Fixed issues with submodules in dependency installations
1 parent a97f0e6 commit e144e4a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docker/common/install-libfranka

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ fi
2323

2424
echo "Installing libfranka version ${LIBFRANKA_VERSION}..."
2525
TMP_DIR="$(mktemp -d /var/tmp/tmp.XXXXXXXXXX)"
26-
git clone --recursive https://github.com/frankaemika/libfranka.git "${TMP_DIR}"
26+
git clone https://github.com/frankaemika/libfranka.git "${TMP_DIR}"
2727
cd "${TMP_DIR}"
2828

2929
git checkout "${LIBFRANKA_VERSION}"
30+
git submodule update --init --recursive
3031

3132
# Cherry-pick missing imports commit
3233
git config user.email "john.doe@example.com"

docker/common/install-pinocchio

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ set -e
33

44
echo "Installing Pinocchio version ${PINOCCHIO_VERSION}..."
55
TMP_DIR="$(mktemp -d /var/tmp/tmp.XXXXXXXXXX)"
6-
git clone --recursive https://github.com/stack-of-tasks/pinocchio "${TMP_DIR}"
6+
git clone https://github.com/stack-of-tasks/pinocchio "${TMP_DIR}"
77
cd "${TMP_DIR}"
88
git checkout "${PINOCCHIO_VERSION}"
9+
git submodule update --init --recursive
910
mkdir build
1011
cd build
1112
# CMP0167 has to be set to OLD to be compatible with outdated boost versions

0 commit comments

Comments
 (0)