Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 8b15144

Browse files
committed
Merge pull request #2186 from MI3Guy/master
Fixed paths to unix build instructions.
2 parents 4e33962 + 6fcb0fd commit 8b15144

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ if [ $? -ne 0 ]; then
2626
# if built from tarball, mono only identifies itself as 4.0.1
2727
__monoversion=$(mono --version | egrep "version 4.0.1(.[0-9]+)?")
2828
if [ $? -ne 0 ]; then
29-
echo "Mono 4.0.1.44 or later is required to build corefx. Please see https://github.com/dotnet/corefx/blob/master/Documentation/unix-instructions.md for more details."
29+
echo "Mono 4.0.1.44 or later is required to build corefx. Please see https://github.com/dotnet/corefx/blob/master/Documentation/building/unix-instructions.md for more details."
3030
exit 1
3131
else
3232
echo "WARNING: Mono 4.0.1.44 or later is required to build corefx. Unable to asses if current version is supported."
3333
fi
3434
fi
3535

3636
if [ ! -e "$__referenceassemblyroot/.NETPortable" ]; then
37-
echo "PCL reference assemblies not found. Please see https://github.com/dotnet/corefx/blob/master/Documentation/unix-instructions.md for more details."
37+
echo "PCL reference assemblies not found. Please see https://github.com/dotnet/corefx/blob/master/Documentation/building/unix-instructions.md for more details."
3838
exit 1
3939
fi
4040

@@ -45,7 +45,7 @@ __buildlog=$__scriptpath/msbuild.log
4545
if [ ! -e "$__nugetpath" ]; then
4646
which curl wget > /dev/null 2> /dev/null
4747
if [ $? -ne 0 -a $? -ne 1 ]; then
48-
echo "cURL or wget is required to build corefx. Please see https://github.com/dotnet/corefx/blob/master/Documentation/unix-instructions.md for more details."
48+
echo "cURL or wget is required to build corefx. Please see https://github.com/dotnet/corefx/blob/master/Documentation/building/unix-instructions.md for more details."
4949
exit 1
5050
fi
5151
echo "Restoring NuGet.exe..."

0 commit comments

Comments
 (0)