|
49 | 49 |
|
50 | 50 | if [[ "$PARALLEL_MODE" == "true" ]]; then |
51 | 51 | # Source parallel installation framework |
| 52 | + # shellcheck disable=SC1091 |
52 | 53 | source "$(dirname "$0")/scripts/parallel-install.sh" |
53 | 54 | echo "🚀 Parallel installation mode enabled" |
54 | 55 | else |
@@ -137,7 +138,7 @@ generate_timing_summary() { |
137 | 138 | } >> "$LOG_FILE" |
138 | 139 | fi |
139 | 140 |
|
140 | | - echo "Completed: $(date)" >> $LOG_FILE |
| 141 | + echo "Completed: $(date)" >> "$LOG_FILE" |
141 | 142 | } |
142 | 143 |
|
143 | 144 | function link_files() { |
@@ -774,24 +775,24 @@ function start_git_status_background() { |
774 | 775 | } |
775 | 776 |
|
776 | 777 | # shellcheck disable=SC2031 |
777 | | -echo '🔗 Starting file linking phase' >> $LOG_FILE |
| 778 | +echo '🔗 Starting file linking phase' >> "$LOG_FILE" |
778 | 779 | link_files_start=$(date +%s) |
779 | 780 | link_files |
780 | 781 | log_with_timing "🔗 File linking phase" "$link_files_start" |
781 | 782 |
|
782 | 783 | # shellcheck disable=SC2031 |
783 | | -echo '💽 Starting software installation phase' >> $LOG_FILE |
| 784 | +echo '💽 Starting software installation phase' >> "$LOG_FILE" |
784 | 785 | install_software_start=$(date +%s) |
785 | 786 | install_software |
786 | 787 | log_with_timing "💽 Software installation phase" "$install_software_start" |
787 | 788 |
|
788 | 789 | # shellcheck disable=SC2031 |
789 | | -echo '👩🔧 Starting software configuration phase' >> $LOG_FILE |
| 790 | +echo '👩🔧 Starting software configuration phase' >> "$LOG_FILE" |
790 | 791 | setup_software_start=$(date +%s) |
791 | 792 | setup_software |
792 | 793 | log_with_timing "👩🔧 Software configuration phase" "$setup_software_start" |
793 | 794 |
|
794 | 795 | # shellcheck disable=SC2031 |
795 | | -echo '✅ Installation completed successfully!' >> $LOG_FILE |
| 796 | +echo '✅ Installation completed successfully!' >> "$LOG_FILE" |
796 | 797 | generate_timing_summary |
797 | 798 |
|
0 commit comments