Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use ssh instead of http git urls #42

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.bash
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ fi
# Install / update the installer / updater
if [[ ! -d $EMC_ENV_DIR ]] && [[ -z "$CI" ]]
then
git clone https://github.com/tue-robotics/emc-env $EMC_ENV_DIR
git clone git@github.com:/tue-robotics/emc-env $EMC_ENV_DIR
elif [[ -n "$CI" ]]
then
mkdir -p $EMC_DIR
Expand Down
2 changes: 1 addition & 1 deletion setup.bash
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ function emc-update
then
if [[ ! -d $EMC_ENV_DIR ]]
then
git clone https://github.com/tue-robotics/emc-env $EMC_ENV_DIR
git clone git@github.com:/tue-robotics/emc-env $EMC_ENV_DIR
else
git -C $EMC_ENV_DIR pull
fi
Expand Down
13 changes: 6 additions & 7 deletions setup/emc-update-impl.bash
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,16 @@ then
fi

# 2) Download packages
_git_clone_or_update https://github.com/tue-robotics/emc_system "$EMC_SYSTEM_DIR"/src/emc_system
_git_clone_or_update https://github.com/tue-robotics/catkin_lint_cmake "$EMC_SYSTEM_DIR"/src/catkin_lint_cmake
_git_clone_or_update https://github.com/tue-robotics/emc_simulator "$EMC_SYSTEM_DIR"/src/emc_simulator
_git_clone_or_update https://github.com/tue-robotics/geolib2 "$EMC_SYSTEM_DIR"/src/geolib2
_git_clone_or_update https://github.com/tue-robotics/code_profiler "$EMC_SYSTEM_DIR"/src/code_profiler
_git_clone_or_update https://github.com/husarion/rosbot_description.git "$EMC_SYSTEM_DIR"/src/rosbot_description
_git_clone_or_update [email protected]:/tue-robotics/emc_system "$EMC_SYSTEM_DIR"/src/emc_system
_git_clone_or_update [email protected]:/tue-robotics/catkin_lint_cmake "$EMC_SYSTEM_DIR"/src/catkin_lint_cmake
_git_clone_or_update [email protected]:/tue-robotics/emc_simulator "$EMC_SYSTEM_DIR"/src/emc_simulator
_git_clone_or_update [email protected]:/tue-robotics/geolib2 "$EMC_SYSTEM_DIR"/src/geolib2
_git_clone_or_update [email protected]:/tue-robotics/code_profiler "$EMC_SYSTEM_DIR"/src/code_profiler

if [ "$ROBOT_REAL" != true ]
then
# Simbot specific packages
_git_clone_or_update https://github.com/husarion/rosbot_description.git "$EMC_SYSTEM_DIR"/src/rosbot_description
_git_clone_or_update git@github.com:/husarion/rosbot_description.git "$EMC_SYSTEM_DIR"/src/rosbot_description
fi

# 3) Install dependencies
Expand Down
Loading