mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-16 19:56:11 +06:00
17 lines
298 B
Bash
17 lines
298 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf calibre-plugin-tmp || /bin/true
|
||
|
|
||
|
mkdir calibre-plugin-tmp
|
||
|
cp migration_plugin/* calibre-plugin-tmp/
|
||
|
cp LICENSE calibre-plugin-tmp/
|
||
|
|
||
|
pushd calibre-plugin-tmp
|
||
|
|
||
|
# Create ZIP file from calibre-plugin folder.
|
||
|
zip -r ../calibre-migration-plugin.zip *
|
||
|
|
||
|
popd
|
||
|
rm -rf calibre-plugin-tmp
|
||
|
|