Repository cleanup (#288)
parent
01c04367e9
commit
2d02839c9d
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:839988d8bedc9a8ec7abf52c34886bd8560bf0a70cfe30d2be362d74bd28851b
|
||||
size 45568
|
||||
@ -1,13 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<!-- Copyright (c) Microsoft Corporation. All rights reserved. -->
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<noInheritable/>
|
||||
<assemblyIdentity
|
||||
type="win32"
|
||||
name="Microsoft.VC90.CRT"
|
||||
version="9.0.21022.8"
|
||||
processorArchitecture="x86"
|
||||
publicKeyToken="1fc8b3b9a1e18e3b"
|
||||
/>
|
||||
<file name="msvcr90.dll" /> <file name="msvcp90.dll" /> <file name="msvcm90.dll" />
|
||||
</assembly>
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b371af3ce6cb5d0b411919a188d5274df74d5ee49f6dd7b1ccb5a31466121a18
|
||||
size 224768
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4f7ed27b532888ce72b96e52952073eab2354160d1156924489054b7fa9b0b1a
|
||||
size 568832
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ed0170d3de86da33e02bfa1605eec8ff6010583481b1c530843867c1939d2185
|
||||
size 655872
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:05de81770680059ba06607754ae73251d3454db15da80e6248c53fb0031c036f
|
||||
size 1738752
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:583784b568bff7a95c71010c8b85cc64a8b662b8d2627e7aeffdaf783d3c33db
|
||||
size 153966
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c897998b1b6f60792fd43501dc06baeb67daa603a3bb3e55ea8e5acc8b4c2a88
|
||||
size 441498
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:87ba7862b61b0ee592fb967d38dfd7636d361199788ab8557344251006a134b1
|
||||
size 70656
|
||||
Binary file not shown.
@ -1,30 +0,0 @@
|
||||
@ECHO OFF
|
||||
REM
|
||||
REM All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
REM its licensors.
|
||||
REM
|
||||
REM For complete copyright and license terms please see the LICENSE at the root of this
|
||||
REM distribution (the "License"). All use of this software is governed by the License,
|
||||
REM or, if provided, by the license below or the license accompanying this file. Do not
|
||||
REM remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
REM
|
||||
|
||||
SETLOCAL
|
||||
SET CMD_DIR=%~dp0
|
||||
SET CMD_DIR=%CMD_DIR:~0,-1%
|
||||
|
||||
echo WARNING: Using deprecated python3.sh in $DIR - please update your scripts
|
||||
echo to use python.sh in the python subfolder of the root instead.
|
||||
|
||||
rem we fetch python pre-emptively because the prior legacy system had
|
||||
rem python pre-installed...
|
||||
call %CMD_DIR%/../../python/get_python.bat
|
||||
|
||||
if ERRORLEVEL 1 (
|
||||
ECHO Failed to fetch python
|
||||
EXIT /b 1
|
||||
)
|
||||
|
||||
call %CMD_DIR%/../../python/python.cmd %*
|
||||
exit /b %ERRORLEVEL%
|
||||
@ -1,40 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
||||
# its licensors.
|
||||
#
|
||||
# For complete copyright and license terms please see the LICENSE at the root of this
|
||||
# distribution (the "License"). All use of this software is governed by the License,
|
||||
# or, if provided, by the license below or the license accompanying this file. Do not
|
||||
# remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
#
|
||||
# Original file Copyright Crytek GMBH or its affiliates, used under license.
|
||||
|
||||
SOURCE="${BASH_SOURCE[0]}"
|
||||
# While $SOURCE is a symlink, resolve it
|
||||
while [ -h "$SOURCE" ]; do
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
SOURCE="$( readlink "$SOURCE" )"
|
||||
# If $SOURCE was a relative symlink (so no "/" as prefix, need to resolve it relative to the symlink base directory
|
||||
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
|
||||
done
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
|
||||
echo "WARNING: Using deprecated python3.sh in $DIR - please update your scripts"
|
||||
echo " to use python.sh in the python subfolder of the root instead."
|
||||
|
||||
# we fetch python pre-emptively because the prior legacy system had
|
||||
# python pre-installed...
|
||||
|
||||
$DIR/../../python/get_python.sh
|
||||
|
||||
retVal=$?
|
||||
if [ $retVal -ne 0 ]; then
|
||||
echo "Error getting python using $DIR/../../python/get_python.sh"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
$DIR/../../python/python.sh "$@"
|
||||
|
||||
exit $?
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b3b65cc9d52e2a0f938b5fce572ed71ecc11d2a1587fa7e9410f06fd643f921a
|
||||
size 78336
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4b22b6e027e9a3aa72ca61fc317ce20ccdd95176089d9e3bebcc838b891ca714
|
||||
size 7415808
|
||||
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e3df60a49674ebd83d192cdb6b8e28f3441ae0bfee43615a16f383be08bf9bab
|
||||
size 259072
|
||||
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c1efedd9f12013790f8c203d13e97140bcda56217c50aab087c50be59fc65c71
|
||||
size 298496
|
||||
@ -1 +0,0 @@
|
||||
Revision Number will be automatically update here from the build promotion system
|
||||
Loading…
Reference in New Issue