File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ that repo.
37
37
- `quickfort`: now prints more helpful error messages for invalid modeline markers
38
38
- `quickfort`: added support for extra space characters in blueprints
39
39
- `quickfort`: now prints a warning when an invalid alias is encountered instead of silently ignoring it
40
+ - `quickfort`: is now more quiet when the ``--quiet`` parameter is specified
40
41
- `setfps`: improved error handling
41
42
42
43
# 0.47.05-r1
Original file line number Diff line number Diff line change 63
63
64
64
function finish_command (ctx , section_name , quiet )
65
65
if ctx .command == ' orders' then quickfort_orders .create_orders (ctx ) end
66
- print (string.format (' %s successfully completed' ,
67
- quickfort_parse .format_command (
68
- ctx .command , ctx .blueprint_name , section_name )))
69
66
if not quiet then
67
+ print (string.format (' %s successfully completed' ,
68
+ quickfort_parse .format_command (
69
+ ctx .command , ctx .blueprint_name , section_name )))
70
70
for _ ,stat in pairs (ctx .stats ) do
71
71
if stat .always or stat .value > 0 then
72
72
print (string.format (' %s: %d' , stat .label , stat .value ))
Original file line number Diff line number Diff line change 69
69
**<options>** can be zero or more of:
70
70
71
71
``-q``, ``--quiet``
72
- Don't report on what actions were taken ( error messages are still shown) .
72
+ Suppress non- error console output .
73
73
``-v``, ``--verbose``
74
74
Output extra debugging information. This is especially useful if the
75
75
blueprint isn't being applied like you expect.
@@ -191,7 +191,7 @@ undo Applies the inverse of the specified blueprint. Dig tiles are
191
191
<options> can be zero or more of:
192
192
193
193
-q, --quiet
194
- Don't report on what actions were taken ( error messages are still shown) .
194
+ Suppress non- error console output .
195
195
-v, --verbose
196
196
Output extra debugging information. This is especially useful if the
197
197
blueprint isn't being applied like you expect.
You can’t perform that action at this time.
0 commit comments