Tools shim maker and env path handling (#8085)

* Tools shim maker and env path handling

Includes component:

* Given executable, create shim (all three OSs)
* Add executable path to Env PATH during first run
* including manual instruction when there is no access
This commit is contained in:
William Lee 2017-11-27 10:45:43 -08:00 committed by GitHub
parent c17ffbf7e8
commit cc80ed43e0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
35 changed files with 1149 additions and 79 deletions

View file

@ -13,9 +13,10 @@ done
REPO_ROOT="$( cd -P "$( dirname "$SOURCE" )/../" && pwd )"
if [ "$uname" = "Darwin" ]
uname=$(uname)
if [ "$(uname)" == "Darwin" ]
then
RID=osx-x64
RID=osx.10.13-x64
else
RID=linux-x64
fi