Linter test was always returning success..

This commit is contained in:
Alexandre Aubin 2021-10-10 16:28:05 +02:00
parent 4d6f308f5c
commit dd95b3dbeb

View file

@ -310,7 +310,7 @@ PACKAGE_LINTER () {
./package_linter/package_linter.py "$package_path" | tee -a "$complete_log" ./package_linter/package_linter.py "$package_path" | tee -a "$complete_log"
./package_linter/package_linter.py "$package_path" --json | tee -a "$complete_log" > $current_test_results ./package_linter/package_linter.py "$package_path" --json | tee -a "$complete_log" > $current_test_results
return $? return ${PIPESTATUS[0]}
} }
TEST_INSTALL () { TEST_INSTALL () {