remove goma CIPD package
goma is not used by developers now. Bug: b/304421889 Change-Id: I68ffd73336f2303484dd44bce6c3984b06faa681 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/5395370 Reviewed-by: Junji Watanabe <jwata@google.com> Reviewed-by: Joanna Wang <jojwang@chromium.org> Commit-Queue: Takuto Ikuta <tikuta@chromium.org> Reviewed-by: Fumitoshi Ukai <ukai@google.com>changes/70/5395370/7
parent
609288a46b
commit
495b23b39a
@ -1,20 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright 2019 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
# See revert instructions in cipd_manifest.txt
|
||||
|
||||
# In git bash on Windows, invoke the batch file.
|
||||
if [ "$(expr "$(uname -s)" : "^MINGW64_NT")" == "10" ]; then
|
||||
goma_auth.bat "$@"
|
||||
exit
|
||||
fi
|
||||
|
||||
MYPATH=$(dirname "${BASH_SOURCE[0]}")
|
||||
|
||||
source "$MYPATH/cipd_bin_setup.sh"
|
||||
cipd_bin_setup &> /dev/null
|
||||
|
||||
PYTHONDONTWRITEBYTECODE=1 exec python3 "$MYPATH/.cipd_bin/goma_auth.py" "$@"
|
@ -1,12 +0,0 @@
|
||||
@echo off
|
||||
:: Copyright 2019 The Chromium Authors. All rights reserved.
|
||||
:: Use of this source code is governed by a BSD-style license that can be
|
||||
:: found in the LICENSE file.
|
||||
|
||||
:: See revert instructions in cipd_manifest.txt
|
||||
|
||||
set scriptdir=%~dp0
|
||||
|
||||
@call "%~dp0\cipd_bin_setup.bat" > nul 2>&1
|
||||
@call %scriptdir%python-bin\python3.bat %~dp0\.cipd_bin\goma_auth.py %*
|
||||
exit /b %ERRORLEVEL%
|
@ -1,25 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Copyright 2019 The Chromium Authors. All rights reserved.
|
||||
# Use of this source code is governed by a BSD-style license that can be
|
||||
# found in the LICENSE file.
|
||||
|
||||
# See revert instructions in cipd_manifest.txt
|
||||
|
||||
# In git bash on Windows, invoke the batch file.
|
||||
if [ "$(expr "$(uname -s)" : "^MINGW64_NT")" == "10" ]; then
|
||||
goma_ctl.bat "$@"
|
||||
exit
|
||||
fi
|
||||
|
||||
MYPATH=$(dirname "${BASH_SOURCE[0]}")
|
||||
|
||||
source "$MYPATH/cipd_bin_setup.sh"
|
||||
cipd_bin_setup &> /dev/null
|
||||
|
||||
GOMA="$MYPATH/.cipd_bin/goma_ctl.py"
|
||||
if [[ -f "$GOMA" ]]; then
|
||||
PYTHONDONTWRITEBYTECODE=1 exec python3 "$GOMA" "$@"
|
||||
else
|
||||
echo "'$GOMA' was not found and may not be supported on this platform!"
|
||||
fi
|
@ -1,16 +0,0 @@
|
||||
@echo off
|
||||
:: Copyright 2019 The Chromium Authors. All rights reserved.
|
||||
:: Use of this source code is governed by a BSD-style license that can be
|
||||
:: found in the LICENSE file.
|
||||
|
||||
:: See revert instructions in cipd_manifest.txt
|
||||
|
||||
set scriptdir=%~dp0
|
||||
|
||||
@call "%~dp0\cipd_bin_setup.bat" > nul 2>&1
|
||||
if "%*" == "/?" (
|
||||
@call %scriptdir%python-bin\python3.bat %~dp0\.cipd_bin\goma_ctl.py --help
|
||||
exit /b
|
||||
)
|
||||
@call %scriptdir%python-bin\python3.bat %~dp0\.cipd_bin\goma_ctl.py %*
|
||||
exit /b %ERRORLEVEL%
|
Loading…
Reference in New Issue