We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a8d6f56 + e16fc27 commit 428a4bdCopy full SHA for 428a4bd
1 file changed
scripts/install.sh
@@ -135,15 +135,15 @@ chmod +x "$exe" ||
135
# Install man pages if available and on Unix systems
136
if [[ $platform != MINGW64* ]]; then
137
man_pages_found=0
138
- for man_file in "$temp_extract_dir"/man/*.1 2>/dev/null; do
+ for man_file in "$temp_extract_dir"/man/*.1; do
139
if [[ -f "$man_file" ]]; then
140
cp "$man_file" "$man_dir/" 2>/dev/null || true
141
man_pages_found=$((man_pages_found + 1))
142
fi
143
done
144
145
# Also check for man pages in root of archive
146
- for man_file in "$temp_extract_dir"/*.1 2>/dev/null; do
+ for man_file in "$temp_extract_dir"/*.1; do
147
148
149
0 commit comments