From f25ebd6a2c120fc4bd6665ebc314b42f50d3400a Mon Sep 17 00:00:00 2001 From: Sameer Rahmani Date: Fri, 17 Apr 2020 11:17:48 +0100 Subject: [PATCH] [FBT] Fix the wrong 'build' command name --- bin/fbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/fbt b/bin/fbt index c611113..dfd038e 100755 --- a/bin/fbt +++ b/bin/fbt @@ -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: