Add a temporary step to cp corehost to /usr/local/bin

This is a temporary fix to unblock dotnet compile on OS X. It copies the corehost
from the install location to /usr/local/bin in postinstall.

Fix 294
This commit is contained in:
Zlatko Knezevic 2015-11-23 11:55:42 -08:00
parent e781a3bf68
commit c91eb06b6e

View file

@ -12,4 +12,8 @@ ln -s $2/bin/dotnet-restore /usr/local/bin/
ln -s $2/bin/dotnet-restore /usr/local/bin/ ln -s $2/bin/dotnet-restore /usr/local/bin/
ln -s $2/bin/resgen /usr/local/bin/ ln -s $2/bin/resgen /usr/local/bin/
# A temporary solution to unblock dotnet compile
cp $2/bin/corehost /usr/local/bin/
exit 0 exit 0