]> Kevux Git Server - controller/commit
Bugfix: Controller is adding an extra '/' to the file name.
authorKevin Day <Kevin@kevux.org>
Fri, 12 Jul 2024 03:52:34 +0000 (22:52 -0500)
committerKevin Day <Kevin@kevux.org>
Fri, 12 Jul 2024 03:52:34 +0000 (22:52 -0500)
commitc385673ab1966679372a39163f225f1e4f96f376
treec9a56e58a224403653f11e347724de9f94bea13b
parent1f67b4a86713a83c4a9c8dcc9803366d6bcf7c80
Bugfix: Controller is adding an extra '/' to the file name.

This does not cause a problem unless the local filesystem is very picky about extra slashes.

The error printing revealed the problem as descibed in the examples below.

Example Incorrect Error Message:
  ERROR: Unable to open file './/entries/utility.entry', could not find.

Example Correct Error Message:
  ERROR: Unable to open file './entries/utility.entry', could not find.
sources/c/main/file.c