diff options
author | Daniel Baumann <daniel@debian.org> | 2011-08-04 21:49:00 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-08-04 21:49:00 +0200 |
commit | 18e092e835786f47e4aa108d4a21056aa69ac685 (patch) | |
tree | fc9993ff9a9fb4d0d31d21dbe48b04850c9f50cc /share/hooks | |
parent | b79dce21551cbf2663c288666d19d699b4f6053e (diff) | |
download | vyos-live-build-18e092e835786f47e4aa108d4a21056aa69ac685.tar.gz vyos-live-build-18e092e835786f47e4aa108d4a21056aa69ac685.zip |
Adding missing 'set -e' in remove-python-py.chroot hook.
Diffstat (limited to 'share/hooks')
-rwxr-xr-x | share/hooks/005-remove-python-py.chroot | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/share/hooks/005-remove-python-py.chroot b/share/hooks/005-remove-python-py.chroot index a8ff40ae5..ff705838f 100755 --- a/share/hooks/005-remove-python-py.chroot +++ b/share/hooks/005-remove-python-py.chroot @@ -1,5 +1,7 @@ #!/bin/sh +set -e + # Remove Python *.py files. # # This removes byte-compiled Python modules to save some space. |