mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-16 02:38:47 +00:00
Make the scraping infrastructure more durable since the scraping service often fails to deliver
10 lines
273 B
Bash
10 lines
273 B
Bash
#!/bin/bash
|
|
#Currently to be run only from the Scraping directory
|
|
rm artifacts/kohlsScraper.zip
|
|
OLDPWD=$(pwd)
|
|
cd build/
|
|
zip -r9 ${OLDPWD}/artifacts/kohlsScraper.zip .
|
|
cd ${OLDPWD}
|
|
zip -r9 artifacts/kohlsScraper.zip *.json
|
|
zip -r9 artifacts/kohlsScraper.zip KohlsScraper.py
|