This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
me=$(basename $0) | |
set -e # exit on error | |
function print_help { | |
echo | |
echo $me - create a virtualenv with relative paths in a certain buildroot and fix the relative path to make it work after install | |
echo | |
echo OPTIONS | |
echo " -h / --help" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
me=$(basename $0) | |
function print_help { | |
echo "$me - wrapper for docker-compose --exit-code-from <test-service>" | |
echo | |
echo "SYNOPSIS" | |
echo " docker-compose --exit-code-from implies --abort-on-container-exit." | |
echo " This has a nasty side-effect: docker-compose will exit with code 0 if another container than test exits early." | |
echo " $me tries to work around this issue." |