Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4167)

Unified Diff: chrome-update-create-task.bat

Issue 2253013004: Remove old unused SVN related scripts from depot_tools (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome-update.py ('k') | create-chromium-git-src » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome-update-create-task.bat
diff --git a/chrome-update-create-task.bat b/chrome-update-create-task.bat
deleted file mode 100755
index 810fb7ea57bb5a55a66aa6766768ede992c21bc8..0000000000000000000000000000000000000000
--- a/chrome-update-create-task.bat
+++ /dev/null
@@ -1,52 +0,0 @@
-@echo off
-:: Copyright (c) 2009 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.
-
-setlocal
-
-:: This script will create a scheduled task to run chrome-update every day
-:: at the time you specify. This script expects to be live in
-:: depot_tools\latest.
-::
-:: Usage: this-script <time to run task> <path to chrome trunk>
-
-set Out=%USERPROFILE%\chrome-update-task.bat
-set TaskTime=%1
-set Trunk=%~f2
-
-if not exist "%Trunk%" (
- echo Usage: %~n0 ^<time^> ^<c:\path\to\chrome\trunk^>
- echo ^<time^> is the time in HH:MM:SS format at which to run the task.
- echo Example: %~n0 02:00:00 c:\src\chrome\trunk
- goto :EOF
-)
-
-if not exist "%Out%" goto CreateScript
-
-echo WARNING: %Out% already exists.
-set Choice=
-set /P Choice=Overwrite file [Y/N]?
-if not "%Choice%"=="y" goto CreateTask
-
-:CreateScript
-
-echo.
-echo Creating %Out%
-
-echo>"%Out%" @echo off
-echo>>"%Out%" "%~dp0chrome-update.bat" "%Trunk%" --solution chrome.sln --target Debug --build-dir src/chrome ^> "%Trunk%\chrome-update-results.txt"
-
-:CreateTask
-
-echo.
-echo ***********************************************************************
-echo Creating a Scheduled Task to run chrome-update each day at %TaskTime%.
-echo The batch file being run will live at %Out%.
-echo.
-echo WARNING: The password you enter will be displayed in cleartext.
-echo If you're paranoid, you can enter blank here and then fix the password
-echo by editing the scheduled task manually from the Control Panel.
-echo ***********************************************************************
-echo.
-schtasks /create /tn chrome-update /tr "\"%Out%\"" /sc daily /st %TaskTime%
« no previous file with comments | « chrome-update.py ('k') | create-chromium-git-src » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698