aboutsummaryrefslogtreecommitdiff
path: root/src/command/commands.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/commands.js')
-rw-r--r--src/command/commands.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/command/commands.js b/src/command/commands.js
index 2ec1bb6..13bb1c2 100644
--- a/src/command/commands.js
+++ b/src/command/commands.js
@@ -115,12 +115,12 @@ function q() {
Qt.quit();
}
-function cd(output, path) {
- if ( path.length > 0 ) {
- if ( !workingDirectory.cd(path) ) {
- output.error('\"' + path + '\" doesn\'t exist.');
- }
+function pwd(output) {
+ var terminal = terminalList.getCurrent().terminal;
+
+ if ( terminal !== null ) {
+ output.log(cwd.currentOfPID(terminal.getPID()));
} else {
- output.log(workingDirectory.current());
+ output.error('No running session selected.');
}
}