File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -135,15 +135,15 @@ chmod +x "$exe" ||
135135# Install man pages if available and on Unix systems
136136if [[ $platform != MINGW64* ]]; then
137137 man_pages_found=0
138- for man_file in " $temp_extract_dir " /man/* .1 2> /dev/null ; do
138+ for man_file in " $temp_extract_dir " /man/* .1; do
139139 if [[ -f " $man_file " ]]; then
140140 cp " $man_file " " $man_dir /" 2> /dev/null || true
141141 man_pages_found=$(( man_pages_found + 1 ))
142142 fi
143143 done
144144
145145 # Also check for man pages in root of archive
146- for man_file in " $temp_extract_dir " /* .1 2> /dev/null ; do
146+ for man_file in " $temp_extract_dir " /* .1; do
147147 if [[ -f " $man_file " ]]; then
148148 cp " $man_file " " $man_dir /" 2> /dev/null || true
149149 man_pages_found=$(( man_pages_found + 1 ))
You can’t perform that action at this time.
0 commit comments