Skip to content

Commit

Permalink
Fixed minor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AkhileshNS committed Dec 26, 2020
1 parent 8223887 commit 5ddde66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const addRemote = ({ app_name, buildpack, region, team }) => {
app_name +
(buildpack ? " --buildpack " + buildpack : "") +
(region ? " --region " + region : "") +
(team ? "--team" + team : "")
(team ? " --team " + team : "")
);
console.log("Successfully created a new heroku app");
}
Expand Down

0 comments on commit 5ddde66

Please sign in to comment.