This website requires JavaScript.
Explore
Help
Sign in
revi-archive
/
phorge-arcanist
Watch
1
Star
0
Fork
You've already forked phorge-arcanist
0
mirror of
https://we.phorge.it/source/arcanist.git
synced
2024-11-29 10:12:41 +01:00
Code
Issues
Releases
Wiki
Activity
7d05dbec15
phorge-arcanist
/
bin
/
arc.bat
3 lines
41 B
Batchfile
Raw
Normal View
History
Unescape
Escape
Add an arc.bat file for Arcanist Summary: Allow Windows users to type "arc" with appropriate env config. Test Plan: Typed "arc", got arc. Reviewers: Makinde, btrahan, Koolvin, jungejason Reviewed By: jungejason CC: aran, epriestley Maniphest Tasks: T124 Differential Revision: https://secure.phabricator.com/D1937
2012-03-19 03:42:53 +01:00
@
echo
off
[Wilds] Rewrite "arc" entrypoints for toolsets Summary: Ref T13098. Depends on D19675. This change is headed to the `untamed-wilds` branch. This change prevents `arc` from running `arc diff`, so I'm copy/pasting it. This change also completely breaks `arc`, but I'm just generally trying to do this rewrite step-by-step so we have at least a bit of context to refer to in the future. The major change here is to turn both `arc` and `phage` into scripts which start an `ArcanistRuntime`. This runtime then decides which workflows (like "diff", "patch", or "remote") are available based on `$argv[0]`. This turns `arc` into more of a CLI tools platform: we can build `phage` on it, third parties can build `my-companion-tool-thing`, etc. But all the different entry points can share a lot of infrastructure like: `help`, `alias`, shell-complete, configuration, Conduit, prompting, `--trace`, extension infrastructure, and so on. `ArcanistRuntime` is roughly a slightly more modern version of `scripts/arcanist.php`. That will be removed eventually, but not everything has ported yet. Test Plan: This code basically doesn't run yet, although the next patch runs at least a little bit. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13098 Differential Revision: https://secure.phabricator.com/D19677
2018-09-14 20:26:56 +02:00
php -f
"
%~dp0
..\bin\arc
"
--
%*
Copy permalink