diff options
author | Thomas Haller <thaller@redhat.com> | 2018-09-13 21:19:01 +0200 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-09-13 21:19:33 +0200 |
commit | 45fc36ebc9e1c201e0ff5e40eae088fd23452a88 (patch) | |
tree | fc99c8d1a08e74c2d0e52c7949257c43473e932c | |
parent | 6a14f9b569aea4dd9ade2a4ad3cbc2688196a6f3 (diff) | |
download | NetworkManager-th/check-gtk-doc-behavior.tar.gz |
contrib/rpm: add --release option to build_clean.sh scriptth/check-gtk-doc-behavior
The correct way to create a tarball for release is
./contrib/fedora/rpm/build_clean.sh -r
Just ensure to issue this from a clean shell environment.
-rwxr-xr-x | contrib/fedora/rpm/build_clean.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/fedora/rpm/build_clean.sh b/contrib/fedora/rpm/build_clean.sh index 1bf932f5cb..c6d08f538c 100755 --- a/contrib/fedora/rpm/build_clean.sh +++ b/contrib/fedora/rpm/build_clean.sh @@ -24,6 +24,7 @@ usage() { echo " -w|--with \$OPTION: pass --with \$OPTION to rpmbuild. For example --with debug" echo " -W|--without \$OPTION: pass --without \$OPTION to rpmbuild. For example --without debug" echo " -s|--snapshot TEXT: use TEXT as the snapshot version for the new package (overwrites \$NM_BUILD_SNAPSHOT environment)" + echo " -r|--release: built a release tarball (this option must be alone)" } @@ -44,6 +45,8 @@ WITH_LIST=() SOURCE_FROM_GIT=0 SNAPSHOT="$NM_BUILD_SNAPSHOT" +NARGS=$# + while [[ $# -gt 0 ]]; do A="$1" shift @@ -55,6 +58,11 @@ while [[ $# -gt 0 ]]; do -f|--force) IGNORE_DIRTY=1 ;; + -r|--release) + [[ $NARGS -eq 1 ]] || die "--release option must be alone" + export NMTST_CHECK_GTK_DOC=1 + BUILDTYPE=SRPM + ;; -c|--clean) GIT_CLEAN=1 ;; |