]>
Commit | Line | Data |
---|---|---|
1 | #!/bin/bash | |
2 | #---------------------------------------------------------------------- | |
3 | ||
4 | set -o errexit | |
5 | ||
6 | if [ $skipsource != yes -o $onlysource = yes ]; then | |
7 | ||
8 | # make the source tarball and srpm | |
9 | distrib/makerpm 2.4 srpm | |
10 | ||
11 | # Copy everything to the staging dir | |
12 | echo "Moving stuff to $STAGING_DIR..." | |
13 | mv dist/* $STAGING_DIR | |
14 | ||
15 | fi |