Browse Source

fixed cwd for new tabs on windows (fixes #378)

Eugene Pankov 7 years ago
parent
commit
eed01e76ad
1 changed files with 2 additions and 2 deletions
  1. 2 2
      terminus-terminal/src/services/terminal.service.ts

+ 2 - 2
terminus-terminal/src/services/terminal.service.ts

@@ -38,9 +38,9 @@ export class TerminalService {
         if (!cwd) {
             if (this.app.activeTab instanceof TerminalTabComponent && this.app.activeTab.session) {
                 cwd = await this.app.activeTab.session.getWorkingDirectory()
-            } else {
-                cwd = this.config.store.terminal.workingDirectory || null
             }
+            cwd = cwd || this.config.store.terminal.workingDirectory
+            cwd = cwd || null
         }
         if (!shell) {
             let shells = await this.shells$.toPromise()