mirror of
https://codeberg.org/ziglings/exercises.git
synced 2025-06-08 01:57:02 +09:00
build: make literal paths portable
Use fs.path.sep_str instead of a slash, in literal paths.
This commit is contained in:
parent
728402c64f
commit
e4e096c680
2 changed files with 7 additions and 2 deletions
|
@ -435,10 +435,11 @@ const HealStep = struct {
|
|||
|
||||
/// Heals all the exercises.
|
||||
fn heal(allocator: Allocator, exercises: []const Exercise, work_path: []const u8) !void {
|
||||
const sep = std.fs.path.sep_str;
|
||||
const join = fs.path.join;
|
||||
|
||||
const exercises_path = "exercises";
|
||||
const patches_path = "patches/patches";
|
||||
const patches_path = "patches" ++ sep ++ "patches";
|
||||
|
||||
for (exercises) |ex| {
|
||||
const name = ex.name();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue