2016-03-09 21:26:37 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
PACKAGE=$1
|
|
|
|
INSTALL_DESTINATION=$2
|
|
|
|
|
|
|
|
# A temporary fix for the permissions issue(s)
|
|
|
|
chmod 755 $INSTALL_DESTINATION/dotnet
|
|
|
|
|
2016-03-25 18:31:30 +00:00
|
|
|
# Add the installation directory to the system-wide paths
|
|
|
|
echo $INSTALL_DESTINATION | tee -a /etc/paths.d/dotnet
|
|
|
|
|
2016-03-09 21:26:37 +00:00
|
|
|
exit 0
|