This commit is contained in:
Dax Raad
2025-06-09 15:00:48 -04:00
parent d8510ab452
commit 60faa26a15
3 changed files with 16 additions and 2 deletions

View File

@@ -33,9 +33,14 @@ export namespace App {
const APP_JSON = "app.json"
async function create(input: { cwd: string; version: string }) {
log.info("creating", {
cwd: input.cwd,
version: input.version,
})
const git = await Filesystem.findUp(".git", input.cwd).then((x) =>
x ? path.dirname(x) : undefined,
)
log.info("git", { git })
const data = path.join(
Global.Path.data,