We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It would be great if this ROS workspace bash script didn't depend on an external Python file.
function ws() { cd $HOME/ws/"$1" export ROS_WS=$PWD export ROS_WORKSPACE=$ROS_WS if [ -f setup.bash ]; then echo "Sourcing setup.bash" source setup.bash fi;
# create a ros environment loader echo "Creating env loader" make_env_loader.py $ROS_WS export ROS_ENV_LOADER=$ROS_WS/env.sh
}
The text was updated successfully, but these errors were encountered:
:-)
Sorry, something went wrong.
baalexander
No branches or pull requests
It would be great if this ROS workspace bash script didn't depend on an external Python file.
!/bin/bash --norc
function ws()
{
cd $HOME/ws/"$1"
export ROS_WS=$PWD
export ROS_WORKSPACE=$ROS_WS
if [ -f setup.bash ]; then
echo "Sourcing setup.bash"
source setup.bash
fi;
}
The text was updated successfully, but these errors were encountered: