Commit 9817a552 authored by calvinh's avatar calvinh

fixed newline issue

parent 28b55875
...@@ -1591,4 +1591,5 @@ def _write_gcp_snap_config(component): ...@@ -1591,4 +1591,5 @@ def _write_gcp_snap_config(component):
if gcp_creds_env_key not in daemon_env: if gcp_creds_env_key not in daemon_env:
daemon_env += '{}={}\n'.format(gcp_creds_env_key, creds_path) daemon_env += '{}={}\n'.format(gcp_creds_env_key, creds_path)
daemon_env_path.parent.mkdir(parents=True, exist_ok=True) daemon_env_path.parent.mkdir(parents=True, exist_ok=True)
daemon_env_path.write_text(daemon_env) daemon_env_path.write_text(daemon_env)
\ No newline at end of file
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment