Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ion
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
ion
Commits
adc770ba
Commit
adc770ba
authored
7 years ago
by
Sag0Sag0
Browse files
Options
Downloads
Patches
Plain Diff
Make popd and pushd update PWD
parent
08cf7ed1
No related branches found
No related tags found
1 merge request
!687
Make popd and pushd update PWD to fix issue #683
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/lib/builtins/mod.rs
+2
-3
2 additions, 3 deletions
src/lib/builtins/mod.rs
src/lib/shell/directory_stack.rs
+6
-3
6 additions, 3 deletions
src/lib/shell/directory_stack.rs
with
8 additions
and
6 deletions
src/lib/builtins/mod.rs
+
2
−
3
View file @
adc770ba
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
src/lib/shell/directory_stack.rs
+
6
−
3
View file @
adc770ba
...
...
@@ -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
(())
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment