Yoshiki-Iwasa / minishell

0 stars 0 forks source link

[デグレ]export testenv3= #56

Closed hiroin closed 4 years ago

hiroin commented 4 years ago

事案 [デグレ]export testenv3=

miishellのver e714f4fe1625382e20c930fbdb8b7e5bce7d68d7

事案詳細 export testenv3= としても環境変数がセットされない testenv3= export testenv3 とすればセットされる。

再現手順

[bash]

$ export testenv3=
$ env | grep testenv3
testenv3=

[minishell]

minishell$ export testenv3=
minishell$ env | grep testenv3
minishell$ testenv3=
minishell$ export testenv3
minishell$ env | grep testenv3
testenv3=
Yoshiki-Iwasa commented 4 years ago

修正しました。 010テスト実行済み

hiroin commented 4 years ago

修正を確認しました。