Skip to content

Commit

Permalink
update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickfreed committed Apr 12, 2021
1 parent 6c6b14c commit 3c0fb7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions etc/package-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ if [ -z "${1+x}" ]; then
fi

VERSION=${1}
SOURCE_DIR="./evergreen-${VERSION}"
SOURCE_DIR="./evg-${VERSION}"

if [ -d "$SOURCE_DIR" ]; then
rm -r ${SOURCE_DIR};
fi
cp -r src ${SOURCE_DIR}

tar -cf "evergreen-${VERSION}.tar" ${SOURCE_DIR}
tar -cf "evg-${VERSION}.tar" ${SOURCE_DIR}

rm -r ${SOURCE_DIR}

0 comments on commit 3c0fb7f

Please sign in to comment.