mirror of
https://github.com/actions/toolkit
synced 2025-05-08 16:17:40 +00:00
12 lines
No EOL
180 B
Batchfile
12 lines
No EOL
180 B
Batchfile
@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 |