Skip to content

Commit c1ac3ee

Browse files
committed
Stop using unicode slashes in paths; Fixes #262
1 parent 7b49c1f commit c1ac3ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default async function config(arg?: string): Promise<Config> {
4343

4444
if (Deno.env.get("PKGX_PANTRY_PATH")) {
4545
const checkout = new Path(Deno.env.get("PKGX_PANTRY_PATH")!)
46-
const slug = pkg.project.replace(/\//g, "") // this is a unicode separator
46+
const slug = pkg.project.replace(/\//g, "__") //FIXME use real folders probs
4747
const pkgspec = `${slug}-${pkg.version}`
4848
return await construct_config({
4949
home: checkout.join('homes', pkgspec),

0 commit comments

Comments
 (0)