Skip to content

Commit

Permalink
Fix models profiling
Browse files Browse the repository at this point in the history
  • Loading branch information
BGMP committed May 18, 2024
1 parent 8719da1 commit dd253f1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ task :profile_cars do
"\s\s\s\sweight: #{l[3]}",
"\s\s\s\smultiplier: #{l[4]}",
"\s\s\s\sfolder_name: #{l[5]}",
"\s\s\s\sauthor: #{l[6]}",
"\s\s\s\sstock: #{l[6].downcase}"
]

Expand Down Expand Up @@ -71,7 +72,9 @@ task :profile_tracks do
"\s\s\s\sdifficulty: #{l[2]}",
"\s\s\s\slength: #{l[3]}",
"\s\s\s\sfolder_name: #{l[4]}",
"\s\s\s\sstock: #{l[5].downcase}"
"\s\s\s\sauthor: #{l[5]}",
"\s\s\s\sstock: #{l[6].downcase}",
"\s\s\s\saverage_lap_time: #{l[7].downcase}"
]

track_lines.each do |line|
Expand Down

0 comments on commit dd253f1

Please sign in to comment.