Merge pull request #294 from gesiscss/master

split  post build script command in Docker file
pull/299/head
Tim Head 2018-04-12 17:58:43 +02:00 zatwierdzone przez GitHub
commit 3b0bac0eb1
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -109,7 +109,8 @@ USER ${NB_USER}
# Make sure that postBuild scripts are marked executable before executing them
{% if post_build_scripts -%}
{% for s in post_build_scripts -%}
RUN chmod +x {{ s }} && ./{{ s }}
RUN chmod +x {{ s }}
RUN ./{{ s }}
{% endfor %}
{% endif -%}