mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-17 04:06:09 +06:00
79be3e3d87
Do not use this version yet unless you have a backup of your account data
17 lines
298 B
Bash
Executable File
17 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
|
|
|