Adding more symlinks to postinstall

Adding symlinks for the following commands:

* dotnet-dnx
* csc

Also adding symlink for libclihost.dylib because it is needed
for the corehost.

Fix #823, #786
This commit is contained in:
Zlatko Knezevic 2016-01-13 13:47:47 -08:00
parent 4879d27d45
commit ccba7ac397

View file

@ -25,6 +25,8 @@ ln -s $INSTALL_DESTINATION/bin/dotnet-resgen /usr/local/bin/
ln -s $INSTALL_DESTINATION/bin/dotnet-run /usr/local/bin/ ln -s $INSTALL_DESTINATION/bin/dotnet-run /usr/local/bin/
ln -s $INSTALL_DESTINATION/bin/dotnet-test /usr/local/bin/ ln -s $INSTALL_DESTINATION/bin/dotnet-test /usr/local/bin/
ln -s $INSTALL_DESTINATION/bin/dotnet-dnx /usr/local/bin/ ln -s $INSTALL_DESTINATION/bin/dotnet-dnx /usr/local/bin/
ln -s $INSTALL_DESTINATION/bin/csc /usr/local/bin/
ln -s $INSTALL_DESTINATION/bin/libclihost.dylib /usr/local/bin/
# A temporary solution to unblock dotnet compile # A temporary solution to unblock dotnet compile
cp $INSTALL_DESTINATION/bin/corehost /usr/local/bin/ cp $INSTALL_DESTINATION/bin/corehost /usr/local/bin/