Skip to content
Snippets Groups Projects
Commit 036390c6 authored by Fernando Herrero's avatar Fernando Herrero
Browse files

Add change of maintainer email domain from default @todo.todo to @iri.upc.edu

parent 1a3d8567
No related branches found
No related tags found
No related merge requests found
......@@ -191,6 +191,7 @@ sed -e "s/template/${project_name}/g" < ${IRI_ROS_SCRIPTS_PATH}/common_templates
################################################################################
pushd "${project_name}" > /dev/null
change_license_to_LGPL
change_maintainer_email_domain_to_iri_upc_edu
popd > /dev/null
################################################################################
echo "Project ${project_name} has been successfully created!!"
......
......@@ -193,6 +193,7 @@ sed -e "s/template/${project_name}/g" < ${IRI_ROS_SCRIPTS_PATH}/common_templates
################################################################################
pushd "${project_name}" > /dev/null
change_license_to_LGPL
change_maintainer_email_domain_to_iri_upc_edu
popd > /dev/null
################################################################################
echo "Project ${project_name} has been successfully created!!"
......
......@@ -491,6 +491,11 @@ function change_license_to_LGPL
find . -name package.xml -exec sed -i -e 's:<license>.*</license>:<license>LGPL</license>:g' {} \;
}
function change_maintainer_email_domain_to_iri_upc_edu
{
find . -name package.xml -exec sed -i -e 's:@todo.todo:@iri.upc.edu:g' {} \;
}
function goto_catkin_workspace
{
roscd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment