We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 495044b commit 3b1e9aeCopy full SHA for 3b1e9ae
packaging/docker/centos7/docker-buildrpm.sh
@@ -305,14 +305,14 @@ if [ ! -d $BUILDDIR ]; then
305
fi
306
307
# place spec file
308
-cp "$home_dir/nlines.spec" "$BUILDDIR/SPECS/"
+cp $home_dir/nlines.spec $BUILDDIR/SPECS/
309
std_message "cp specfile to build dir. Contents of target dir: $(ls -lh $BUILDDIR/SPECS)" "INFO" $LOG_FILE
310
311
# create sources
312
-cp "$home_dir/nlines*.tar.gz" "$BUILDDIR/SOURCES/"
+cp $home_dir/nlines*.tar.gz $BUILDDIR/SOURCES/
313
std_message "cp TARfile to build dir. Contents of target dir: $(ls -lh $BUILDDIR/SOURCES)" "INFO" $LOG_FILE
314
315
-cd "$home_dir/rpmbuild"
+cd $home_dir/rpmbuild
316
std_message "Changed to rpmbuild working directory. (PWD: $PWD)" "INFO" $LOG_FILE
317
318
# build rpm
0 commit comments