Changeset c57747d


Ignore:
Timestamp:
06/29/2017 04:45:31 PM (7 years ago)
Author:
Pierre Labastie <pierre@…>
Branches:
ablfs-more, legacy, trunk
Children:
45f8a9c8
Parents:
a4acb12
Message:

Make the date of the SBU_DU file the same as the one reported at the end of
the jhalfs run. Note that date is the one when the run is started

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • CLFS/master.sh

    ra4acb12 rc57747d  
    11221122        @\$(call echo_message, Building)
    11231123        @if [ "\$(ADD_REPORT)" = "y" ]; then \\
    1124           ./create-sbu_du-report.sh logs $VERSION; \\
     1124          ./create-sbu_du-report.sh logs $VERSION $(date --iso-8601); \\
    11251125          \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
    11261126        fi;
  • CLFS2/master.sh

    ra4acb12 rc57747d  
    503503        @\$(call echo_message, Building)
    504504        @if [ "\$(ADD_REPORT)" = "y" ]; then \\
    505           ./create-sbu_du-report.sh logs $VERSION; \\
     505          ./create-sbu_du-report.sh logs $VERSION $(date --iso-8601); \\
    506506          \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
    507507        fi;
  • CLFS3/master.sh

    ra4acb12 rc57747d  
    552552        @\$(call echo_message, Building)
    553553        @if [ "\$(ADD_REPORT)" = "y" ]; then \\
    554           ./create-sbu_du-report.sh logs $VERSION; \\
     554          ./create-sbu_du-report.sh logs $VERSION $(date --iso-8601); \\
    555555          \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
    556556        fi;
  • HLFS/master.sh

    ra4acb12 rc57747d  
    617617        @\$(call echo_message, Building)
    618618        @if [ "\$(ADD_REPORT)" = "y" ]; then \\
    619           ./create-sbu_du-report.sh logs $VERSION; \\
     619          ./create-sbu_du-report.sh logs $VERSION $(date --iso-8601); \\
    620620          \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
    621621        fi;
  • LFS/master.sh

    ra4acb12 rc57747d  
    575575        @\$(call echo_message, Building)
    576576        @if [ "\$(ADD_REPORT)" = "y" ]; then \\
    577           sudo ./create-sbu_du-report.sh logs $VERSION; \\
     577          sudo ./create-sbu_du-report.sh logs $VERSION $(date --iso-8601); \\
    578578          \$(call echo_report,$VERSION-SBU_DU-$(date --iso-8601).report); \\
    579579        fi;
  • common/create-sbu_du-report.sh

    ra4acb12 rc57747d  
    66LOGSDIR=$1
    77VERSION=$2
     8DATE=$3
    89
    910LINE="================================================================================"
     
    1112# Make sure that we have a directory as first argument
    1213[[ ! -d "$LOGSDIR" ]] && \
    13   echo -e "\nUSAGE: create-sbu_du-report.sh logs_directory [book_version]\n" && exit
     14  echo -e "\nUSAGE: create-sbu_du-report.sh logs_directory [book_version] [date]\n" && exit
    1415
    1516# Make sure that the first argument is a jhalfs logs directory
     
    1920# If this script is run manually, the book version may be unknown
    2021[[ -z "$VERSION" ]] && VERSION=unknown
     22[[ -z "$DATE" ]] && DATE=$(date --iso-8601)
    2123
    2224# If there is iteration logs directories, copy the logs inside iteration-1
     
    2628
    2729# Set the report file
    28 REPORT="$VERSION"-SBU_DU-$(date --iso-8601).report
     30REPORT="$VERSION"-SBU_DU-"$DATE".report
    2931
    3032[ -f $REPORT ] && : >$REPORT
Note: See TracChangeset for help on using the changeset viewer.