This repository has been archived on 2026-01-16. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
apper/apper.sh
2018-02-20 14:48:50 -06:00

17 lines
248 B
Bash

MODULE=apper
VERSION=1.0.0
DATE=$(date +%Y%m%d)git
TAG=v1.0.0
set -x
rm -rf $MODULE
git clone kde:$MODULE
pushd $MODULE
git archive $TAG --format tar --prefix=${MODULE}-${VERSION}/ | xz -9 > ../${MODULE}-${VERSION}.tar.xz
popd
rm -rf $MODULE