Skip to content

Commit 60258b8

Browse files
authored
Simplify file copy in prepare_rc.sh
Removed conditional copy of .travis.yml and simplified the copy command.
1 parent 72cc6a4 commit 60258b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

dev-tools/release/prepare_rc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ BMDIR=apache-geode-benchmarks-${VERSION}-src
277277
BMTAR=${BMDIR}.tgz
278278
git clean -dxf
279279
mkdir ../${BMDIR}
280-
[ -f .travis.yml ] && cp -r .travis.yml * ../${BMDIR} || cp -r * ../${BMDIR}
280+
cp -r * ../${BMDIR}
281281
tar czf ${BMTAR} -C .. ${BMDIR}
282282
rm -Rf ../${BMDIR}
283283
gpg --armor -u ${SIGNING_KEY} -b ${BMTAR}

0 commit comments

Comments
 (0)