From 84b134341a82d87362fa10ab24df292bdf7d6893 Mon Sep 17 00:00:00 2001
From: Lloyd Hilaiel <lloyd@hilaiel.com>
Date: Tue, 25 Oct 2011 11:38:40 -0600
Subject: [PATCH] move rpmbulid.sh into scripts/ - it's not important enough to
 all who view the repo to be at the top level.  issue #478

---
 rpmbuild.sh => scripts/rpmbuild.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename rpmbuild.sh => scripts/rpmbuild.sh (79%)

diff --git a/rpmbuild.sh b/scripts/rpmbuild.sh
similarity index 79%
rename from rpmbuild.sh
rename to scripts/rpmbuild.sh
index 51cfacbb5..c7caae8cd 100755
--- a/rpmbuild.sh
+++ b/scripts/rpmbuild.sh
@@ -4,10 +4,10 @@ set -e
 
 progname=$(basename $0)
 
-cd $(dirname $0)    # top level of the checkout
+cd $(dirname $0)/..    # top level of the checkout
 
 curdir=$(basename $PWD)
-if [ "$curdir" != "browserid" ]; then  
+if [ "$curdir" != "browserid" ]; then
     echo "$progname: git checkout must be in a dir named 'browserid'" >&2
     exit 1
 fi
@@ -23,7 +23,7 @@ set +e
 rpmbuild --define "_topdir $PWD/rpmbuild" -ba browserid.spec
 rc=$?
 if [ $rc -eq 0 ]; then
-    ls -l $PWD/rpmbuild/RPMS/*/*.rpm   
+    ls -l $PWD/rpmbuild/RPMS/*/*.rpm
 else
     echo "$progname: failed to build browserid RPM (rpmbuild rc=$rc)" >&2
 fi
-- 
GitLab