Skip to content

Commit aa396fb

Browse files
committed
Potential fix for vagrant_packager+ new molecule
With the bump to molecule, the ephemeral directory spot has changed. For now, lets utilize the old directory space since its already git/docker ignored.
1 parent 2d05027 commit aa396fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

molecule/vagrant_packager/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def main():
129129
temp_dir)
130130
EPHEMERAL_DIRS[temp_dir] = ephemeral_path
131131

132-
os.mkdir(os.path.join(SCENARIO_PATH, ".molecule", temp_dir))
132+
os.mkdirs(os.path.join(SCENARIO_PATH, ".molecule", temp_dir))
133133
except OSError:
134134
pass
135135

0 commit comments

Comments
 (0)