Skip to content
Snippets Groups Projects
Commit f3935bbc authored by Mattia Mancini's avatar Mattia Mancini
Browse files

ROHD-2204: Fix missing space in if clause

parent 1793a1e8
No related branches found
No related tags found
1 merge request!83ROHD-2204: Fix python exit code 120
......@@ -97,7 +97,7 @@ echo "Exit code from check_hardware.py is " $err
# flush the stdout buffer. This is a feature of the python3 interpreter,
# that manifests itself with a headless execution of the current script.
if [ $err -eq 0 ] || [ $err -eq 120]
if [ $err -eq 0 ] || [ $err -eq 120 ]
then
# Add test results too PVSS and make bad_rcu_file
#updatePVSS.py -N=5,50,1 -J=5,50,2 -S=20 -E
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment