fix: force push when deploying projects to Dokku

This commit is contained in:
James Murdza 2024-08-18 06:46:51 -07:00
parent 86db64a83b
commit cd59b19ac7

View File

@ -60,7 +60,7 @@ export class SecureGitClient {
await git.commit("Add files."); await git.commit("Add files.");
// Push the changes to the remote repository // Push the changes to the remote repository
await git.push("origin", "master"); await git.push("origin", "master", {'--force': null});
console.log("Files successfully pushed to the repository"); console.log("Files successfully pushed to the repository");