Skip to content

Commit 23855fc

Browse files
authored
Merge pull request #544 from benjaminr/bugfix/unnecessary-postBuild-comment
Spurious comment in `Dockerfile` #543
2 parents 9eb78c3 + 234e0b6 commit 23855fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

repo2docker/buildpacks/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,8 @@
142142
# We always want containers to run as non-root
143143
USER ${NB_USER}
144144
145-
# Make sure that postBuild scripts are marked executable before executing them
146145
{% if post_build_scripts -%}
146+
# Make sure that postBuild scripts are marked executable before executing them
147147
{% for s in post_build_scripts -%}
148148
RUN chmod +x {{ s }}
149149
RUN ./{{ s }}
@@ -317,7 +317,7 @@ def stencila_contexts(self):
317317
documents = manifest.findall('./documents/document')
318318
files = [os.path.join(self.stencila_manifest_dir, x.get('path'))
319319
for x in documents]
320-
320+
321321
else:
322322
return self._stencila_contexts
323323

0 commit comments

Comments
 (0)