Skip to content

Commit 3b1e9ae

Browse files
committed
build script corrections; debugging
1 parent 495044b commit 3b1e9ae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packaging/docker/centos7/docker-buildrpm.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,14 +305,14 @@ if [ ! -d $BUILDDIR ]; then
305305
fi
306306

307307
# place spec file
308-
cp "$home_dir/nlines.spec" "$BUILDDIR/SPECS/"
308+
cp $home_dir/nlines.spec $BUILDDIR/SPECS/
309309
std_message "cp specfile to build dir. Contents of target dir: $(ls -lh $BUILDDIR/SPECS)" "INFO" $LOG_FILE
310310

311311
# create sources
312-
cp "$home_dir/nlines*.tar.gz" "$BUILDDIR/SOURCES/"
312+
cp $home_dir/nlines*.tar.gz $BUILDDIR/SOURCES/
313313
std_message "cp TARfile to build dir. Contents of target dir: $(ls -lh $BUILDDIR/SOURCES)" "INFO" $LOG_FILE
314314

315-
cd "$home_dir/rpmbuild"
315+
cd $home_dir/rpmbuild
316316
std_message "Changed to rpmbuild working directory. (PWD: $PWD)" "INFO" $LOG_FILE
317317

318318
# build rpm

0 commit comments

Comments
 (0)