Skip to content

Commit

Permalink
fix mistake in stripping spaces from projectname
Browse files Browse the repository at this point in the history
  • Loading branch information
brian-level committed Jun 14, 2024
1 parent d52c41d commit 365f4e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/generate
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ generate()
local project_name=""
project_line=$(grep 'project_name: ' "${slcp}")
project_name="${project_line//project_name:/}"
project_name="${project_line// /}"
project_name="${project_name// /}"
local generation_dir=${2?A generation output dir is expected as the second argument}
local export_templates="${repo_dir}/slc/exporter_templates/platform_library"
local board=${3?A board is expected as the third argument}
Expand Down

0 comments on commit 365f4e3

Please sign in to comment.