18 lines
542 B
Bash
18 lines
542 B
Bash
#!/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
|
|
INSTALL_TEMP_HOME=/tmp/dotnet-installer
|
|
|
|
first_run() {
|
|
$INSTALL_DESTINATION/dotnet exec $INSTALL_DESTINATION/sdk/%SDK_VERSION%/dotnet.dll internal-reportinstallsuccess "$1" > /dev/null 2>&1 || true
|
|
}
|
|
|
|
INSTALL_TEMP_HOME=$(mktemp -d) # mktemp should set 700 perm automatically
|
|
HOME=$INSTALL_TEMP_HOME first_run
|
|
|
|
exit 0
|