Commit ec6d8eae authored by Jan Kiene's avatar Jan Kiene
Browse files

fix file globbing

parent 741785da
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -148,7 +148,7 @@ else
  python3 ci/complexity_measurements/genWebpageData.py --wmops_per_op_log ${wmopsFilenameFlc}_WMOPS.csv --rom_log ${log_rom_all}
fi

python3 ${scriptDir}/check_for_changes.py "${destDir}/wmops/log_wmops_all*.txt" "${destDir}/wmops/log_ram_all*.txt" ${destDir}/wmops/log_rom_all.txt
python3 ${scriptDir}/check_for_changes.py $(ls ${destDir}/wmops/log_wmops_all*.txt) $(ls ${destDir}/wmops/log_ram_all*.txt) ${destDir}/wmops/log_rom_all.txt
if [ "$?" != "0" ]; then
  ret_val=1
fi