mirror of
https://github.com/Leseratte10/acsm-calibre-plugin
synced 2024-12-26 09:58:09 +01:00
79be3e3d87
Do not use this version yet unless you have a backup of your account data
16 lines
298 B
Bash
Executable file
16 lines
298 B
Bash
Executable file
#!/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
|
|
|