We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b49c1f commit c1ac3eeCopy full SHA for c1ac3ee
lib/config.ts
@@ -43,7 +43,7 @@ export default async function config(arg?: string): Promise<Config> {
43
44
if (Deno.env.get("PKGX_PANTRY_PATH")) {
45
const checkout = new Path(Deno.env.get("PKGX_PANTRY_PATH")!)
46
- const slug = pkg.project.replace(/\//g, "∕") // this is a unicode separator
+ const slug = pkg.project.replace(/\//g, "__") //FIXME use real folders probs
47
const pkgspec = `${slug}-${pkg.version}`
48
return await construct_config({
49
home: checkout.join('homes', pkgspec),
0 commit comments