mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-28 03:00:55 +00:00
d6ede93924
Error message:
error: Import "urlparse" could not be resolved
(reportMissingImports)
11 lines
340 B
Bash
Executable File
11 lines
340 B
Bash
Executable File
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "${SCRIPT_DIR}"
|
|
|
|
set -x
|
|
|
|
python3 "generate_urls.py" &&
|
|
([[ -f "urls.csv.gz" ]] && rm --verbose "urls.csv.gz" || exit 0) &&
|
|
gzip --verbose --best --no-name "urls.csv" &&
|
|
gzip --verbose --test "urls.csv.gz" &&
|
|
mv --verbose "urls.csv.gz" "PHPCurlClass/urls.csv.gz"
|