2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 09:32:21 +00:00

Fix syntax error with new check

This commit is contained in:
Jarrod Johnson 2021-06-15 12:23:45 -04:00
parent 55a4211e71
commit 5621d48ffa

View File

@ -243,7 +243,7 @@ def _mount_constrained_fs(opts, installroot):
else:
src = v
dst = os.path.join(installroot, 'run/external')
while v and v[0] = '/':
while v and v[0] == '/':
v = v[1:]
dst = os.path.join(dst, v)
mkdirp(dst)