Skip to content

Commit

Permalink
don't need this joinpath
Browse files Browse the repository at this point in the history
  • Loading branch information
aappleby committed Mar 27, 2024
1 parent d7c7ac0 commit 29ee9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorial/tut10.hancho
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ util_o = config.task(

app = config.task(
desc = "Link {source_files} into {build_files}",
command = "g++ {joinpath(build_dir, source_files)} -o {build_files}",
command = "g++ {source_files} -o {build_files}",
source_files = [main_o, util_o],
build_files = ["{build_dir}/app"],
)

0 comments on commit 29ee9c9

Please sign in to comment.