Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const addConfig = ({ app_name, env_file, appdir }) => {
const createProcfile = ({ procfile, appdir }) => {
if (procfile) {
fs.writeFileSync(path.join(appdir, "Procfile"), procfile);
execSync(`git add -A && git commit -m "Added Procfile"`);
execSync(`git add -A && git commit --no-verify -m "Added Procfile"`);
console.log("Written Procfile with custom configuration");
}
};
Expand Down Expand Up @@ -190,7 +190,7 @@ if (heroku.dockerBuildArgs) {
const status = execSync("git status --porcelain").toString().trim();
if (status) {
execSync(
'git add -A && git commit -m "Commited changes from previous actions"'
'git add -A && git commit --no-verify -m "Commited changes from previous actions"'
);
}

Expand Down