Browse Source

Fix accidental removal of newline

jockus 4 years ago
parent
commit
b110153b51
1 changed files with 1 additions and 0 deletions
  1. 1 0
      core/path/filepath/path.odin

+ 1 - 0
core/path/filepath/path.odin

@@ -215,6 +215,7 @@ rel :: proc(base_path, target_path: string, allocator := context.allocator) -> (
 		}
 		delete(base_clean);
 	}
+
 	if strings.equal_fold(target_clean, base_clean) {
 		return strings.clone("."), .None;
 	}