Skip to content

Commit

Permalink
uploading only waht's specified in the parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
sonja.mirtitsch%sun.com committed Mar 19, 2002
1 parent 2e01f5c commit 8f7bcbe
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions security/nss/tests/qa_stage
Expand Up @@ -289,9 +289,17 @@ fi
cd $STAGE_1 || (Echo "Cant cd to $STAGE_1 , exit"; exit)
Echo "tar..."
if [ "$O_SILENT" = "ON" ] ; then
tar cf all.tar daily_qa tinderbox
TARPARAM=cf
else
tar cvf all.tar daily_qa tinderbox
TARPARAM=cvf
fi

if [ "$DO_DQA" = "ON" && "$DO_TBX" = "ON" ] ; then
tar $TARPARAM all.tar daily_qa tinderbox
elif [ "$DO_DQA" = "ON" ] ; then
tar $TARPARAM all.tar daily_qa
else
tar $TARPARAM all.tar tinderbox
fi
gzip all.tar
# ssh-agent > /u/sonmi/.ssh/ssh-agent.info
Expand Down

0 comments on commit 8f7bcbe

Please sign in to comment.