Skip to content

Commit

Permalink
Change break to continue
Browse files Browse the repository at this point in the history
  • Loading branch information
imanel committed Jun 20, 2014
1 parent 596992d commit 723b44a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion image/my_init
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def export_envvars(to_dir = True):
shell_dump = ""
for name, value in os.environ.items():
if name in ['HOME', 'USER', 'GROUP', 'UID', 'GID', 'SHELL']:
break
continue
if to_dir:
with open("/etc/container_environment/" + name, "w") as f:
f.write(value)
Expand Down

0 comments on commit 723b44a

Please sign in to comment.