mirror of
https://github.com/ClaytonWWilson/Listify.git
synced 2025-12-15 10:28:46 +00:00
Move to Lambda function setup and add orchestration and word lists for full runs. Credit for the word lists goes to: http://www.desiquintans.com/nounlist
9 lines
243 B
Bash
9 lines
243 B
Bash
#!/bin/bash
|
|
#Currently to be run only from the Scraping directory
|
|
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
|