mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-01 13:57:42 +01:00
6 lines
221 B
JavaScript
6 lines
221 B
JavaScript
const fs = require("node:fs");
|
|
const path = require("node:path");
|
|
|
|
const cliReadme = path.join(__dirname, "..", "..", "crates-cli", "yaak-cli", "README.md");
|
|
fs.copyFileSync(cliReadme, path.join(__dirname, "README.md"));
|