repo2docker/tests/venv/postBuild
yuvipanda 603efee588 Make all bash verify scripts fail on error
Bash scripts by default continue on executing even if any
command errors. That's not the behavior we want for our scripts,
so let's explicitly get them to fail if:

1. Any command exits with non 0 exit code
2. An undefined variable is referenced
2017-11-21 14:53:15 -08:00
..
README.rst yuvi comments 2017-10-06 18:23:16 -07:00
postBuild Add test for postBuild script 2017-07-29 17:37:05 -07:00
requirements.txt Add test for postBuild script 2017-07-29 17:37:05 -07:00
verify Make all bash verify scripts fail on error 2017-11-21 14:53:15 -08:00

README.rst

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

System - Post-build scripts
---------------------------

It is possible to run scripts after you've built the environment specified in
your other files. This could be used to, for example, download data or run
some configuration scripts. For example, this will download and install a
Jupyter extension.

.. note::

   This file needs to be executable in order to work with ``repo2docker``. If
   you're on Linux or macOS, run::

       chmod +x postBuild

   If you're on windows, you can accomplish the same behavior with this
   ``git`` command::

       git update-index --chmod=+x postBuild