Skip to content
Snippets Groups Projects
Commit adc770ba authored by Sag0Sag0's avatar Sag0Sag0
Browse files

Make popd and pushd update PWD

parent 08cf7ed1
No related branches found
No related tags found
1 merge request!687Make popd and pushd update PWD to fix issue #683
......@@ -243,7 +243,7 @@ fn builtin_pushd(args: &[&str], shell: &mut Shell) -> i32 {
if check_help(args, MAN_PUSHD) {
return SUCCESS;
}
match shell.directory_stack.pushd(args, &shell.variables) {
match shell.directory_stack.pushd(args, &mut shell.variables) {
Ok(()) => SUCCESS,
Err(why) => {
let stderr = io::stderr();
......@@ -258,8 +258,7 @@ fn builtin_popd(args: &[&str], shell: &mut Shell) -> i32 {
if check_help(args, MAN_POPD) {
return SUCCESS;
}
match shell.directory_stack.popd(args) {
match shell.directory_stack.popd(args, &mut shell.variables) {
Ok(()) => SUCCESS,
Err(why) => {
let stderr = io::stderr();
......
......@@ -40,7 +40,7 @@ impl DirectoryStack {
/// Attempts to set the current directory to the directory stack's previous directory,
/// and then removes the front directory from the stack.
pub(crate) fn popd<I: IntoIterator>(&mut self, args: I) -> Result<(), Cow<'static, str>>
pub(crate) fn popd<I: IntoIterator>(&mut self, args: I, variables: &mut Variables) -> Result<(), Cow<'static, str>>
where
I::Item: AsRef<str>,
{
......@@ -101,6 +101,8 @@ impl DirectoryStack {
)));
}
// Manually update $PWD
variables.set_var("PWD", current_dir().unwrap().to_str().unwrap());
self.print_dirs();
Ok(())
}
......@@ -108,7 +110,7 @@ impl DirectoryStack {
pub(crate) fn pushd<I: IntoIterator>(
&mut self,
args: I,
variables: &Variables,
variables: &mut Variables,
) -> Result<(), Cow<'static, str>>
where
I::Item: AsRef<str>,
......@@ -164,8 +166,9 @@ impl DirectoryStack {
}
};
// Manually update $PWD
variables.set_var("PWD", current_dir().unwrap().to_str().unwrap());
self.print_dirs();
Ok(())
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment