Skip to content
Snippets Groups Projects
Unverified Commit 793da542 authored by Leroy Rügemer's avatar Leroy Rügemer Committed by GitHub
Browse files

Merge pull request #1 from mvieth/clf

Fix quotations marks in exported variable
parents 153a2798 6c6df87f
Branches
No related tags found
No related merge requests found
...@@ -19,10 +19,10 @@ def parse_arguments(): ...@@ -19,10 +19,10 @@ def parse_arguments():
return args return args
MAVEN_HEADER=""" MAVEN_HEADER="""
<settings xmlns='http://maven.apache.org/SETTINGS/1.0.0/' <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0/"
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd'> http://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles> <profiles>
<profile> <profile>
<id>catkin</id> <id>catkin</id>
...@@ -144,6 +144,6 @@ if __name__ == '__main__': ...@@ -144,6 +144,6 @@ if __name__ == '__main__':
print(home) print(home)
elif args.create_maven_settings: elif args.create_maven_settings:
s = (MAVEN_HEADER + get_repositories_xml() + MAVEN_FOOTER) s = (MAVEN_HEADER + get_repositories_xml() + MAVEN_FOOTER)
print(repr(s)[1:-1].replace("'", "\\'")) print(repr(s)[1:-1])
else: else:
print("Nothing to see here - please provide one of the valid command switches.") print("Nothing to see here - please provide one of the valid command switches.")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment