mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-11-04 14:49:57 +08:00
10 lines
277 B
Bash
Executable File
10 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
# we need an unreleased version of moveit_core
|
|
mkdir moveit
|
|
cd moveit
|
|
git init
|
|
git remote add -f origin https://github.com/ros-planning/moveit.git
|
|
git config core.sparseCheckout true
|
|
echo "moveit_core" >> .git/info/sparse-checkout
|
|
git pull origin ${ROS_DISTRO}_devel
|