File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 59
59
- name : build image
60
60
run : docker build -t zimit .
61
61
62
+ - name : ensure help display without issue
63
+ run : docker run -v $PWD/output:/output zimit zimit --help
64
+
62
65
- name : run crawl
63
66
run :
docker run -v $PWD/output:/output zimit zimit --url http://isago.rskg.org/ --name isago --zim-file isago.zim --adminEmail [email protected] --mobileDevice "Pixel 5" --statsFilename /output/stats.json --keep
64
67
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Upgrade to browsertrix crawler 1.3.2, warc2zim 2.1.2 and other dependencies (#406 )
13
13
14
+ ### Fixed
15
+
16
+ - Fix help (#393 )
17
+
14
18
## [ 2.1.2] - 2024-09-09
15
19
16
20
### Changed
Original file line number Diff line number Diff line change @@ -287,7 +287,7 @@ def run(raw_args):
287
287
parser .add_argument (
288
288
"--diskUtilization" ,
289
289
help = "Save state and exit if disk utilization exceeds this percentage value."
290
- " Default (if not set) is 90%. Set to 0 to disable disk utilization check." ,
290
+ " Default (if not set) is 90%% . Set to 0 to disable disk utilization check." ,
291
291
type = int ,
292
292
default = 90 ,
293
293
)
You can’t perform that action at this time.
0 commit comments