Skip to content

Commit

Permalink
fix: language value was not getting replaced when creating the `.sapp…
Browse files Browse the repository at this point in the history
…hirerc.json` file from template
  • Loading branch information
enxg committed Sep 22, 2021
1 parent 746ab83 commit 946a40a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/new.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class New extends Command {

await rm(`./${response.projectName}/ghr`, { recursive: true, force: true });

await CreateFileFromTemplate('.sapphirerc.json.sapphire', resolve(`./${response.projectName}/.sapphirerc.json`), {
await CreateFileFromTemplate('.sapphirerc.json.sapphire', resolve(`./${response.projectName}/.sapphirerc.json`), null, {
language: response.projectLang
});

Expand Down

0 comments on commit 946a40a

Please sign in to comment.