fix(next): uncommented python module call
Browse files
next.sh
CHANGED
@@ -23,7 +23,7 @@ last_to_fetch=$(($first_to_fetch + $n_items - 1))
|
|
23 |
|
24 |
for i in $(seq $first_to_fetch $last_to_fetch); do
|
25 |
printf "Fetching page %04d...\n" $i
|
26 |
-
|
27 |
done
|
28 |
|
29 |
echo "Number of files in the directory '$folder': $(ls $folder | wc -l)"
|
|
|
23 |
|
24 |
for i in $(seq $first_to_fetch $last_to_fetch); do
|
25 |
printf "Fetching page %04d...\n" $i
|
26 |
+
python -m much fetch $i -p "$folder" -i index.tsv
|
27 |
done
|
28 |
|
29 |
echo "Number of files in the directory '$folder': $(ls $folder | wc -l)"
|