Skip to content

Commit

Permalink
Merge pull request #118 from zalando/bugfix/wale_tmpdir
Browse files Browse the repository at this point in the history
Bugfix/wale tmpdir
  • Loading branch information
Oleksii Kliukin committed Dec 16, 2016
2 parents 2ac31e1 + 65c2b8f commit c478527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgres-appliance/configure_spilo.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ def write_wale_command_environment(placeholders, overwrite, provider):
os.path.join(placeholders['WALE_ENV_DIR'], 'GOOGLE_APPLICATION_CREDENTIALS'), overwrite)
else:
return
if not os.path.exists(placeholders['WALE_TMPDIR'])
if not os.path.exists(placeholders['WALE_TMPDIR']):
os.makedirs(placeholders['WALE_TMPDIR'])
write_file(placeholders['WALE_TMPDIR'], os.path.join(placeholders['WALE_ENV_DIR'], 'TMPDIR'), True)

Expand Down

0 comments on commit c478527

Please sign in to comment.