Skip to content

Commit

Permalink
add slash
Browse files Browse the repository at this point in the history
  • Loading branch information
mmeigs committed Nov 29, 2023
1 parent a3cbc72 commit 7d0ba08
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/commands/src/helpers/dependency-helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function createEnvProdFile(
logger: (message: string) => void,
prefix = ''
) {
const prodFileName = `${repoDir}snooty/.env.production`;
const prodFileName = `${repoDir}/snooty/.env.production`;
const prodDirName = repoDir;
// const prodSnootyFileName = `${prodDirName}snooty/.env.production`;

Expand Down
4 changes: 2 additions & 2 deletions src/commands/src/shared/next-gen-html.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import path from 'path';
import { IJobRepoLogger } from '../../../services/logger';
import { executeCliCommand, getRepoDir } from '../helpers';
// import { IJobRepoLogger } from '../../../services/logger';
import { executeCliCommand } from '../helpers';
import { Job } from '../../../entities/job';

export async function nextGenHtml({ job, preppedLogger }: { job: Job; preppedLogger: (msg: string) => void }) {
Expand Down

0 comments on commit 7d0ba08

Please sign in to comment.