Movatterモバイル変換


[0]ホーム

URL:


Wayback Machine
2 captures
22 Mar 2019 - 12 Dec 2022
MarDECJan
Previous capture12Next capture
201920222023
success
fail
COLLECTED BY
TIMESTAMPS
loading
The Wayback Machine - https://web.archive.org/web/20221212013140/https://github.com/dotnet/coreclr/blob/master/dotnet.sh
Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

coreclr/dotnet.sh

Go to file
 
 
Cannot retrieve contributors at this time
executable file 40 lines (30 sloc) 1.04 KB
#!/usr/bin/env bash
working_tree_root="$(cd"$( dirname"${BASH_SOURCE[0]}")"&&pwd)"
__ProjectDir=${working_tree_root}
__RepoRootDir=${working_tree_root}/../..
# BEGIN SECTION to remove after repo consolidation
if [!-f"${__RepoRootDir}/.dotnet-runtime-placeholder" ];then
__RepoRootDir=${__ProjectDir}
fi
# END SECTION to remove after repo consolidation
# Don't resolve runtime, shared framework, or SDK from other locations to ensure build determinism
export DOTNET_MULTILEVEL_LOOKUP=0
# Disable first run since we want to control all package sources
export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
source${__RepoRootDir}/eng/common/tools.sh
InitializeDotNetCli
__dotnetDir=${_InitializeDotNetCli}
if [$?!= 0 ];then
echo"Failed to install dotnet using Arcade"
exit$?
fi
dotnetPath=${__dotnetDir}/dotnet
echo"Running:${dotnetPath}$@"
${dotnetPath}"$@"
if [$?-ne 0 ]
then
echo"ERROR: An error occurred in${dotnetPath}$@. Check logs under$working_tree_root."
exit 1
fi
echo"Command successfully completed."
exit 0

[8]ページ先頭

©2009-2025 Movatter.jp