Skip to content

Commit

Permalink
fix: uncomment correctly in ors-config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
takb committed Apr 19, 2024
1 parent 700cae5 commit 61ee483
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/utils/yml_config_to_ors_config_conversion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ echo "- Uncomment ors, engine and source_file"
sed -i -e '/^#ors:/s/^#//' -e '/^#.*engine:/s/^#//' -e '/^#.*source_file:/s/^#//' "$output_file"

echo "- Uncomment subsequent lines for profiles.car.enabled in ors.engine"
sed -i -e '/^#.*profiles:/s/^#//' "$output_file"
sed -i -e '/^#.*car:.*/s/^#//' "$output_file"
sed -i -e '/^# profiles:/s/^#//' "$output_file"
sed -i -e '/^# car:.*/s/^#//' "$output_file"
sed -i -e '/^# car:.*/s/^#//' "$output_file"

echo "Parsing complete. Result saved to $output_file"

0 comments on commit 61ee483

Please sign in to comment.