Skip to content
Merged
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
4 changes: 2 additions & 2 deletions rtcFunctions.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class RTCLogin:
@staticmethod
def loginandcollectstreamuuid():
config = configuration.get()
shell.execute("%s login -r %s -u %s -P %s" % (config.scmcommand, config.repo, config.user, config.password))
shell.execute("%s login -r %s -u '%s' -P '%s'" % (config.scmcommand, config.repo, config.user, config.password))
config.collectstreamuuids()

@staticmethod
Expand Down Expand Up @@ -187,7 +187,7 @@ def determineinitialbaseline(self, stream):
for entry in componentbaselinesentries:
shouter.shout("Determine initial baseline of " + entry.componentname)
# use always scm, lscm fails when specifying maximum over 10k
command = "scm --show-alias n --show-uuid y list baselines --components %s -r %s -u %s -P %s -m 20000" % \
command = "scm --show-alias n --show-uuid y list baselines --components %s -r %s -u %s -P '%s' -m 20000" % \
(entry.component, config.repo, config.user, config.password)
baselineslines = shell.getoutput(command)
baselineslines.reverse() # reverse to have earliest baseline on top
Expand Down