Skip to content
Snippets Groups Projects
Commit f576ff61 authored by Sergi Hernandez's avatar Sergi Hernandez
Browse files

Changed the extension of the ReadMe file to Markdown.

parent cf34dca2
No related branches found
No related tags found
No related merge requests found
...@@ -134,15 +134,15 @@ fi ...@@ -134,15 +134,15 @@ fi
#parse the dependencies and create the dependencies file #parse the dependencies and create the dependencies file
arr=$(echo $DEP | tr "," "\n") arr=$(echo $DEP | tr "," "\n")
#Set the author's email on the ReadMe.txt disclaimer file #Set the author's email on the ReadMe.md disclaimer file
sed 's/author_email/labrobotica@iri.upc.edu/g' <ReadMe_template.txt >tmp1.txt sed 's/author_email/labrobotica@iri.upc.edu/g' <ReadMe_template.md >tmp1.md
#set the author's name on the ReadMe.txt disclaimer file #set the author's name on the ReadMe.txt disclaimer file
sed 's/author_name/IRI labrobotics/g' <tmp1.txt >tmp2.txt sed 's/author_name/IRI labrobotics/g' <tmp1.md >tmp2.md
#Set the project name on the ReadMe.txt disclaimer file #Set the project name on the ReadMe.txt disclaimer file
sed 's/project_name/'"$PROJECT_NAME"'/g' <tmp2.txt >./ReadMe.txt sed 's/project_name/'"$PROJECT_NAME"'/g' <tmp2.md >./ReadMe.md
rm tmp1.txt rm tmp1.md
rm tmp2.txt rm tmp2.md
rm ReadMe_template.txt rm ReadMe_template.md
#Set the project name on the CMakeLists.txt script file #Set the project name on the CMakeLists.txt script file
NEW_NAME=$(echo $NAME | sed 's/_/-/g') NEW_NAME=$(echo $NAME | sed 's/_/-/g')
......
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