[FBT] Fix the wrong 'build' command name

This commit is contained in:
Sameer Rahmani 2020-04-17 11:17:48 +01:00
parent 33020a5c34
commit f25ebd6a2c
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ is the rest of the arguments."
((string= command "lint") (funcall #'lint (or (car args) "core")))
((string= command "compile") (funcall #'fbt-compile/compile (or (car args) "core")))
((string= command "clean") (funcall #'fbt-build/clean (or args '("core" "fbt"))))
((string= command "build") (funcall #'build args))
((string= command "build") (funcall #'fbt-build/build args))
(t (print-help command))))))
;; Local Variables: