mirror of
https://github.com/Leseratte10/acsm-calibre-plugin.git
synced 2024-11-16 11:46:10 +06:00
15 lines
378 B
Bash
Executable File
15 lines
378 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ ! -f calibre-plugin/cryptography.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/rsa.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/asn1crypto.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/oscrypto.zip ] && ./package_modules.sh
|
|
[ ! -f calibre-plugin/pyasn1.zip ] && ./package_modules.sh
|
|
|
|
pushd calibre-plugin
|
|
|
|
zip -r ../calibre-plugin.zip *
|
|
|
|
popd
|
|
|