You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
-
- # context verification
- if [ ! -f readme.md ]; then
- echo "You seems to be in the wrong directory"
- echo "Execute this script from the root of LessPass with ./scripts/${0##*/}"
- exit 1
- fi
- # verification completed
-
- CWD="$(pwd)"
- cd webextension
- VERSION="$(git describe --abbrev=0 --tags)"
- git archive -o webextension.zip master
- mv webextension.zip /tmp
- cd ../pure/
- git archive -o pure.zip master
- mv pure.zip /tmp
- cd /tmp
- mkdir LessPass
- mv pure.zip LessPass/
- mv webextension.zip LessPass/
- cd LessPass/
- unzip pure.zip -d pure
- unzip webextension.zip -d webextension
- rm pure.zip webextension.zip
- zip -r LessPass-src-$VERSION.zip pure webextension
- mv LessPass-src-$VERSION.zip ~/Desktop/
- cd $CWD
- rm -rf /tmp/LessPass
|