Check if builtin cd is called

Fixes #1234
This commit is contained in:
Ng Zhi An 2018-05-27 11:02:08 -07:00
parent 467dfe07b6
commit cb4a0c0250
2 changed files with 2 additions and 1 deletions

View file

@ -261,7 +261,7 @@ getCommand t =
getCommandName t = do
(T_SimpleCommand _ _ (w:rest)) <- getCommand t
s <- getLiteralString w
if "busybox" `isSuffixOf` s
if "busybox" `isSuffixOf` s || "builtin" == s
then
case rest of
(applet:_) -> getLiteralString applet