File diff a451a3cf2b41 → e3b83798eaba
roles/common/files/pip_check_requirements_upgrades.sh
Show inline comments
 
@@ -238,7 +238,7 @@ for environment in "$config_dir"/*; do
 
        current=$(sed -e 's/[[:blank:]]*#.*//' "$req_txt" | grep -v "^$" | sort -u)
 

	
 
        # Calculate up-to-date requirements.
 
        new=$(pip-compile --quiet --allow-unsafe --no-header --no-annotate --no-index --output-file - --upgrade "$req_in")
 
        new=$(pip-compile --quiet --allow-unsafe --no-header --no-annotate --no-emit-index-url --output-file - --upgrade "$req_in")
 
        result="$?"
 
        if [[ $result != 0 ]]; then
 
             error "Failed while running pip-compile command against (see error stack trace above): $req_in"