Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Borwe committed Jan 13, 2024
1 parent 04638e6 commit 810ccd9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/presenter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export class Presenter {
gitCommit(logMsg: string | undefined, file: vscode.Uri){
//start the git push and commit process here
if(this._enabled){
console.log("PLEASE STARTING SAVE:", file.fsPath)
startGitCommit(logMsg, file, (commitStatus)=>{
if(commitStatus.status === "Comitted"){
//start git push
Expand Down Expand Up @@ -96,7 +95,6 @@ export class Presenter {
const workspaces = vscode.workspace.workspaceFolders
if( workspaces!== undefined && workspaces.length>0){
const workspace = workspaces[0]
console.log("FOLDER ",workspace.uri.fsPath)
doGitMergeAndRebase(result, workspace.uri,(result)=>{
if(result.pushed===true){
vscode.window.showInformationMessage("SaveMeBaby: Push success")
Expand Down

0 comments on commit 810ccd9

Please sign in to comment.