Skip to content

Commit

Permalink
fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timbrinded committed Nov 6, 2023
1 parent 35af606 commit fc1e674
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/cli/src/internal/cmdFunctions/initialisation.ts
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ export async function generateConfig() {
);

await fs.writeFile("moonwall.config", textBlob + JSONBlob, "utf-8");
process.env.MOON_CONFIG_PATH = "./moonwall.config"
process.env.MOON_CONFIG_PATH = "./moonwall.config";
break;
} else {
console.log("ℹ️ Config file already exists at this location. Quitting.");
@@ -126,5 +126,4 @@ export function createConfig(options: {
};
}


const textBlob = `// TEST TEST TEST\n`
const textBlob = `// TEST TEST TEST\n`;

0 comments on commit fc1e674

Please sign in to comment.