Commit 48eaf4c9 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix folder name

parent 53e2bb7e
Loading
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -1261,12 +1261,12 @@ voip-be-on-merge-request:
  # this is needed for the first run with split graphs on a branch where the global version did run previously
  # NOTE: checking only for level_1 file here as this should already be sufficient
  # NOTE2: also not chechking for RAM for same reason
  -   wmops_all_global="${public_dir}/log_wmops_all.txt"
  -   ram_all_global="${public_dir}/log_ram_all.txt"
  -   if [ -f "${wmops_all_global}" ] && [ ! -f "${public_dir}/log_wmops_all_level_1.txt" ]; then
  -   wmops_all_global="wmops/log_wmops_all.txt"
  -   ram_all_global="wmops/log_ram_all.txt"
  -   if [ -f "${wmops_all_global}" ] && [ ! -f "wmops/log_wmops_all_level_1.txt" ]; then
  -     for suffix in "level_1 level_2 level_3 rate_sw"; do
  -       cp ${wmops_all_global} ${public_dir}/log_wmops_all_{suffix}.txt
  -       cp ${ram_all_global} ${public_dir}/log_ram_all_{suffix}.txt
  -       cp ${wmops_all_global} wmops/log_wmops_all_{suffix}.txt
  -       cp ${ram_all_global} wmops/log_ram_all_{suffix}.txt
  -     done
  -   fi
  - fi