Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
mraible committed Oct 28, 2023
1 parent 95247b7 commit 32804d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generators/heroku/generator.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ export default class HerokuGenerator extends BaseGenerator {

const { stdout: buildpackData } = await this.spawnHeroku(['buildpacks', '--app', this.herokuAppName]);
if (!buildpackData.includes(buildpack)) {
const { stdout: data, stderr: error } = await this.spawnHeroku(['buildpacks:add', buildpack, '--app', this.herokuAppName]);
await this.spawnHeroku(['buildpacks:add', buildpack, '--app', this.herokuAppName]);
}

this.log.log(chalk.bold('\nDeploying application...'));
Expand Down

0 comments on commit 32804d4

Please sign in to comment.