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.
13 lines
377 B
13 lines
377 B
#Getting variables that are produced by the script
|
|
VERSION=$(head -1 ./version.info)
|
|
NAME=$(head -1 ./name.info)
|
|
PACKAGENAME=$NAME-$VERSION
|
|
PACKAGETAR=$PACKAGENAME.tar.gz
|
|
PACKAGEZIP=$PACKAGENAME.zip
|
|
TARGET=$PWD/target
|
|
|
|
cd target/build/
|
|
echo "creating $PACKAGETAR in $TARGET"
|
|
tar -zcvf $TARGET/$PACKAGETAR .
|
|
echo "creating $PACKAGEZIP in $TARGET"
|
|
zip -r $TARGET/$PACKAGEZIP ./*
|