Skip to content

Commit

Permalink
use 7zip for unzipping statics instead of Rust library zip
Browse files Browse the repository at this point in the history
  • Loading branch information
pyover180 committed Feb 7, 2024
1 parent d234fcc commit f487310
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ingest_gtfs_schedule/unzip-statics.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ for zip_file in *.zip; do
fi

# Unzip the file into the destination folder
unzip -o "$zip_file" -d "../$destination_folder" &
#unzip -UUo "$zip_file" -d "../$destination_folder" &
7za x -y $zip_file -o../$destination_folder
echo "Unzipped"
done
wait
Expand Down

0 comments on commit f487310

Please sign in to comment.