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