2
2
zrcadlo https://github.com/Hilbis/Hilbish synchronizováno 2025-07-18 16:52:02 +00:00

fix: check if no command passed to exec (#310)

* fix: check if no command passed to exec

* docs: add exec fixes

* chore: remove extra space
Tento commit je obsažen v:
youkwhd 2024-07-10 21:04:15 +07:00 odevzdal GitHub
rodič 0e4b95d9b9
revize b24fc4a422
V databázi nebyl nalezen žádný známý klíč pro tento podpis
ID GPG klíče: B5690EEEBB952194
2 změnil soubory, kde provedl 4 přidání a 0 odebrání

Zobrazit soubor

@ -30,6 +30,7 @@ hilbish.run('wc -l', {
### Fixed
- Fix ansi attributes causing issues with text when cut off in greenhouse
- `exec` command should return if no arg presented
## [2.2.3] - 2024-04-27
### Fixed

Zobrazit soubor

@ -1,5 +1,8 @@
local commander = require 'commander'
commander.register('exec', function(args)
if #args == 0 then
return
end
hilbish.exec(args[1])
end)