Skip to content

Commit 3bd7b59

Browse files
committed
[mdir] Remove trailing semicolon
1 parent fa6b4e6 commit 3bd7b59

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Changes.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Changes in 2.4.1 (WIP)
2+
3+
Fixed:
4+
5+
- [mdir] Remove trailing semicolon at the end of command
6+
17
# Changes in 2.4.0
28

39
IMPORTANT:

widgets/mdir_all.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ function mdir_all.async(format, warg, callback)
4040

4141
local new, cur = 0, 0
4242
spawn.with_line_callback(
43-
"find" .. starting_points .. " -type f -regex '.*/cur/.*2,[^S]*$';",
43+
"find" .. starting_points .. " -type f -regex '.*/cur/.*2,[^S]*$'",
4444
{ stdout = function (filename) cur = cur + 1 end,
4545
output_done = function ()
4646
spawn.with_line_callback(
47-
"find" .. starting_points .. " -type f -path '*/new/*';",
47+
"find" .. starting_points .. " -type f -path '*/new/*'",
4848
{ stdout = function (filename) new = new + 1 end,
4949
output_done = function () callback{ new, cur } end })
5050
end })

0 commit comments

Comments
 (0)