2015-10-23 18:10:47 +00:00
|
|
|
#!/bin/sh
|
2015-11-16 19:21:57 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
#
|
2015-10-23 18:10:47 +00:00
|
|
|
|
2015-11-18 20:59:03 +00:00
|
|
|
ln -s $2/bin/dotnet /usr/local/bin/
|
|
|
|
ln -s $2/bin/dotnet-compile /usr/local/bin/
|
|
|
|
ln -s $2/bin/dotnet-compile-csc /usr/local/bin/
|
2015-12-08 18:54:03 +00:00
|
|
|
ln -s $2/bin/dotnet-new /usr/local/bin/
|
|
|
|
ln -s $2/bin/dotnet-pack /usr/local/bin/
|
2015-11-18 20:59:03 +00:00
|
|
|
ln -s $2/bin/dotnet-publish /usr/local/bin/
|
2015-12-08 18:54:03 +00:00
|
|
|
ln -s $2/bin/dotnet-repl /usr/local/bin/
|
2015-11-18 20:59:03 +00:00
|
|
|
ln -s $2/bin/dotnet-restore /usr/local/bin/
|
2015-12-01 17:12:04 +00:00
|
|
|
ln -s $2/bin/dotnet-resgen /usr/local/bin/
|
2015-12-08 18:54:03 +00:00
|
|
|
ln -s $2/bin/dotnet-run /usr/local/bin/
|
|
|
|
ln -s $2/bin/dotnet-test /usr/local/bin/
|
2015-10-23 18:10:47 +00:00
|
|
|
|
2015-11-23 19:55:42 +00:00
|
|
|
# A temporary solution to unblock dotnet compile
|
|
|
|
cp $2/bin/corehost /usr/local/bin/
|
|
|
|
|
|
|
|
|
2015-10-23 18:10:47 +00:00
|
|
|
exit 0
|