Skip to content

Commit

Permalink
[Release Script] Check for correct symlink name
Browse files Browse the repository at this point in the history
While checking for the existence of the clang-tools-extra directory,
the script was not checking for its destination name, "extra", and
the script was failing when re-running without checking out new
sources.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243898 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
rengolin committed Aug 3, 2015
1 parent 43247f1 commit f3f35ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/release/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ function export_sources() {
ln -s ../../cfe.src clang
fi
cd $BuildDir/llvm.src/tools/clang/tools
if [ ! -h clang-tools-extra ]; then
if [ ! -h extra ]; then
ln -s ../../../../clang-tools-extra.src extra
fi
cd $BuildDir/llvm.src/projects
Expand Down

0 comments on commit f3f35ec

Please sign in to comment.