You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for current_reviewReleaseTag in $(cat "$scriptLocal"/analysisTmp/releasesTags); do
29897
-
# Compare the list of binaries, etc, in this release to the current release
29898
-
if [ "$current_reviewReleaseTag" != "$currentReleaseTag" ]; then
29899
-
echo | tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
29900
-
echo 'Items (ie. '"$current_reportFile"') in '"$current_reviewReleaseTag"' but not in currentRelease '"$currentReleaseTag"':' | tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
29894
+
# Analysis - for each report file, compare for all tags.
29895
+
#for current_reportFile in "${current_reportFiles_list[@]}"; do
#for current_reviewReleaseTag in $(cat "$scriptLocal"/analysisTmp/releasesTags); do
29898
+
## Compare the list of binaries, etc, in this release to the current release
29899
+
#if [ "$current_reviewReleaseTag" != "$currentReleaseTag" ]; then
29900
+
#echo | tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
29901
+
#echo 'Items (ie. '"$current_reportFile"') in '"$current_reviewReleaseTag"' but not in currentRelease '"$currentReleaseTag"':' | tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
29902
+
##| tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
# Analysis - for each tag, compare all report files.
29913
+
# More human readable stdout - shows all differences between current version and other tagged version , one tagged version at a time.
29914
+
# WARNING: Selected "$scriptLocal"/analysisTmp/"$current_reportFile" file is used directly, rather than "$scriptLocal"/analysisTmp/"$current_reportFile"-"$currentReleaseTag" , for compatibility with analysis solely for more rapid diagnostics which will not be uploaded (ie. 'ubDistBuild' 'build-analysis-beforeBoot').
29915
+
for current_reportFile in "${current_reportFiles_list[@]}"; do
for current_reviewReleaseTag in $(cat "$scriptLocal"/analysisTmp/releasesTags); do
29919
+
for current_reportFile in "${current_reportFiles_list[@]}"; do
29920
+
if [ "$current_reviewReleaseTag" != "$currentReleaseTag" ]; then
29921
+
29922
+
echo | tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
29923
+
echo 'Items (ie. '"$current_reportFile"') in '"$current_reviewReleaseTag"' but not in currentRelease '"$currentReleaseTag"':' | tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
29924
+
29901
29925
#| tee -a "$scriptLocal"/analysisTmp/missing-"$current_reportFile"
29902
29926
comm -23 <(sort "$scriptLocal"/analysisTmp/"$current_reportFile"-"$current_reviewReleaseTag") <(sort "$scriptLocal"/analysisTmp/"$current_reportFile") > "$scriptLocal"/analysisTmp/missing-"$current_reportFile".tmp
29903
29927
cat "$scriptLocal"/analysisTmp/missing-"$current_reportFile".tmp | head -n "$currentLimit"
0 commit comments