summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_build_rpm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build_rpm.sh b/bin/reproducible_build_rpm.sh
index 24071dbb..6b4a92a3 100755
--- a/bin/reproducible_build_rpm.sh
+++ b/bin/reproducible_build_rpm.sh
@@ -45,7 +45,7 @@ download_package() {
choose_package() {
echo "$(date -u ) - choosing package to be build."
local MIN_AGE=6
- for PKG in sudo ; do
+ for PKG in sudo git screen vim joe less rpm file ssh ; do
# build package if it has never build or at least $MIN_AGE days ago
if [ ! -d $BASE/rpm/$RELEASE/$ARCH/$PKG ] || [ ! -z $(find $BASE/rpm/$RELEASE/$ARCH/ -name $PKG -mtime +$MIN_AGE) ] ; then
SRCPACKAGE=$PKG