Skip to content

Commit

Permalink
fix: makefile path_run config flag (#142)
Browse files Browse the repository at this point in the history
## Summary

One line fix to change `./` to `../` in Makefile `path_run` target's config flag.
  • Loading branch information
commoddity authored Jan 22, 2025
1 parent 5b66349 commit 89dad88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ check_path_config: ## Verify that path configuration file exists

.PHONY: path_run
path_run: path_build check_path_config ## Run the path binary as a standalone binary
(cd bin; ./path -config ./local/path/config/.config.yaml)
(cd bin; ./path -config ../local/path/config/.config.yaml)

#################################
### Local PATH make targets ###
Expand Down

0 comments on commit 89dad88

Please sign in to comment.