Add exec (#10)

* Add exec

* Fix linux tests

* unnecessary dependency

* Dont prefix ExecOptions with I

* Consistency nits

* Respond to feedback

* Add toolrunner explanatory quote

* Format
This commit is contained in:
Danny McCormick
2019-05-28 15:21:45 -04:00
committed by GitHub
parent 8ebbf59cb3
commit c5f27c3c1b
13 changed files with 1609 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
@echo off
setlocal
set index=0
:check_arg
set arg=%1
if not defined arg goto :eof
set "arg=%arg:"=<quote>%"
echo args[%index%]: "%arg%"
set /a index=%index%+1
shift
goto check_arg