Skip to content

Commit ffb7116

Browse files
Symlink even if all tools are available
1 parent de436d3 commit ffb7116

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

tools/build/build-llvm-tools

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,10 @@ def main():
119119

120120
if len(missing_tools) == 0:
121121
print('All required tools are available')
122-
return
123-
124-
print('Missing tools:')
125-
for tool in missing_tools:
126-
print(f' * {tool}')
122+
else:
123+
print('Missing tools:')
124+
for tool in missing_tools:
125+
print(f' * {tool}')
127126

128127
repo_root = pathlib.Path(REPO_ROOT)
129128
build_dir = repo_root / '..' / 'build' / 'llvm-tools'

0 commit comments

Comments
 (0)