From 26ab661dbfa59b55a220dc748bd3bf65c34d6ccd Mon Sep 17 00:00:00 2001 From: Drew Galbraith Date: Sun, 26 Nov 2023 19:12:54 -0800 Subject: [PATCH] [Teton] Change cwd command to pwd. --- sys/teton/terminal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/teton/terminal.cpp b/sys/teton/terminal.cpp index 208681f..953cc32 100644 --- a/sys/teton/terminal.cpp +++ b/sys/teton/terminal.cpp @@ -25,8 +25,8 @@ void Terminal::ExecuteCommand(const glcr::String& command) { } glcr::StringView cmd = tokens[0]; if (cmd == "help") { - console_.WriteString("Available Commands: cwd cd ls\n"); - } else if (cmd == "cwd") { + console_.WriteString("Available Commands: pwd cd ls\n"); + } else if (cmd == "pwd") { console_.WriteString(cwd_); console_.WriteChar('\n'); } else if (cmd == "cd") {