From 3fda2e7a3f3bd9f9b66f90e3459df9f7394873c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hans=20H=C3=BCbner?= Date: Mon, 6 Nov 2023 11:57:15 +0100 Subject: [PATCH] feat(*): address review comments --- busted/runner.lua | 2 +- completions/bash/busted.bash | 1 + try | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/busted/runner.lua b/busted/runner.lua index 8d2c557e..ce4a4830 100644 --- a/busted/runner.lua +++ b/busted/runner.lua @@ -149,7 +149,7 @@ return function(options) }) if not ok then io.stderr:write(appName .. ': failed running the specified helper (' .. - cliArgs.helper .. '), error: ' .. err .. '\n') + cliArgs.helper .. '), error: ' .. err .. '\n') exit(1, forceExit) end end diff --git a/completions/bash/busted.bash b/completions/bash/busted.bash index 7c32dafb..c0e40f30 100644 --- a/completions/bash/busted.bash +++ b/completions/bash/busted.bash @@ -181,6 +181,7 @@ _busted() { --filter= --filter-out= --name= --exclude-names-file= + --log-success= --repeat= --seed= --lang= diff --git a/try b/try index 119dd8f1..d13f0449 100755 --- a/try +++ b/try @@ -1,4 +1,4 @@ #!/bin/sh luarocks remove busted --force luarocks make -LUA_PATH="./?.lua;./?/init.lua;$LUA_PATH" busted "$@" +LUA_PATH="./?.lua;./?/init.lua;./src/?/?.lua;./src/?/init.lua;$LUA_PATH" busted $@