mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-09 02:02:12 +00:00
20 lines
272 B
Bash
Executable File
20 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d "tmp" ]; then
|
|
rm -rf tmp
|
|
fi
|
|
|
|
mkdir tmp
|
|
cp originals/web.zip tmp
|
|
cd tmp
|
|
unzip web.zip
|
|
mv wherehows-* wherehows
|
|
|
|
# some may wish to remove the docs
|
|
# rm -rf wherehows/share
|
|
|
|
rm README.md
|
|
|
|
tar zcvf web.tar.gz wherehows
|
|
|
|
cp web.tar.gz ../../web/archives |