|
@@ -24,7 +24,7 @@ NOBUILDID=0000000000000000000000000000000000000000
|
|
|
perf buildid-list -i $PERF_DATA --with-hits | grep -v "^$NOBUILDID " > $BUILDIDS
|
|
|
if [ ! -s $BUILDIDS ] ; then
|
|
|
echo "perf archive: no build-ids found"
|
|
|
- rm -f $BUILDIDS
|
|
|
+ rm $BUILDIDS || true
|
|
|
exit 1
|
|
|
fi
|
|
|
|
|
@@ -40,7 +40,7 @@ while read build_id ; do
|
|
|
done
|
|
|
|
|
|
tar cfj $PERF_DATA.tar.bz2 -C $PERF_BUILDID_DIR -T $MANIFEST
|
|
|
-rm -f $MANIFEST $BUILDIDS
|
|
|
+rm $MANIFEST $BUILDIDS || true
|
|
|
echo -e "Now please run:\n"
|
|
|
echo -e "$ tar xvf $PERF_DATA.tar.bz2 -C ~/.debug\n"
|
|
|
echo "wherever you need to run 'perf report' on."
|