summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepshikha Khandelwal <dkhandel@redhat.com>2020-01-22 14:23:51 +0530
committerDeepshikha Khandelwal <dkhandel@redhat.com>2020-01-22 14:23:51 +0530
commita278947cac9d0a122dc743a8cee4b33163f61743 (patch)
treee22919b86890dfeb735336ed59f6ebf5411a60e8
parent43d0c844f83dbc84371bcbcdee637f7d5952994d (diff)
Bug fix: Create a directory /build/scratch without using mock
Jenkins was not having permissions for this directory when compiling glusterfs in fedora-smoke jenkins job Change-Id: Ifd8486891cb2e35ddf34a88088701111cec8f3cb
-rw-r--r--build-gluster-org/scripts/fedora-smoke.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-gluster-org/scripts/fedora-smoke.sh b/build-gluster-org/scripts/fedora-smoke.sh
index 6c5e594..2c45671 100644
--- a/build-gluster-org/scripts/fedora-smoke.sh
+++ b/build-gluster-org/scripts/fedora-smoke.sh
@@ -8,7 +8,7 @@ nproc=$(getconf _NPROCESSORS_ONLN)
./autogen.sh;
P=/build;
sudo rm -rf $P/scratch;
-sudo mkdir -p $P/scratch;
+mkdir -p $P/scratch;
cd $P/scratch;
sudo rm -rf $P/install;
$SRC/configure --prefix=$P/install --with-mountutildir=$P/install/sbin \