mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
fix stupid typo introduced by d9b30ab09
This commit is contained in:
parent
d9b30ab090
commit
085a9b9267
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
function export --description 'Set env variable. Alias for `set -gx` for bash compatibility.'
|
||||
if not set -q argv[0]
|
||||
if not set -q argv[1]
|
||||
set -x
|
||||
return 0
|
||||
end
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
function setenv --description 'Set env variable. Alias for `set -gx` for csh compatibility.'
|
||||
if not set -q argv[0]
|
||||
if not set -q argv[1]
|
||||
set -x
|
||||
return 0
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue