conductor-4-all 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -239,7 +239,7 @@ var ConfigurableGenerator = class {
|
|
|
239
239
|
if (protocolFilename) {
|
|
240
240
|
try {
|
|
241
241
|
const protocolSource = (0, import_path3.join)(templateRoot, "GEMINI.md");
|
|
242
|
-
const protocolDest = (0, import_path3.join)(
|
|
242
|
+
const protocolDest = (0, import_path3.join)(process.cwd(), protocolFilename);
|
|
243
243
|
if (existsSync(protocolSource)) {
|
|
244
244
|
let shouldCopy = true;
|
|
245
245
|
if (existsSync(protocolDest)) {
|
package/dist/index.js
CHANGED
|
@@ -212,7 +212,7 @@ var ConfigurableGenerator = class {
|
|
|
212
212
|
if (protocolFilename) {
|
|
213
213
|
try {
|
|
214
214
|
const protocolSource = join3(templateRoot, "GEMINI.md");
|
|
215
|
-
const protocolDest = join3(
|
|
215
|
+
const protocolDest = join3(process.cwd(), protocolFilename);
|
|
216
216
|
if (existsSync(protocolSource)) {
|
|
217
217
|
let shouldCopy = true;
|
|
218
218
|
if (existsSync(protocolDest)) {
|