Skip to content

Commit 428a4bd

Browse files
authored
Merge pull request #3 from VapiAI/lukatmyshu-patch-1
2 parents a8d6f56 + e16fc27 commit 428a4bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,15 @@ chmod +x "$exe" ||
135135
# Install man pages if available and on Unix systems
136136
if [[ $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))

0 commit comments

Comments
 (0)