Code 2022-3.0 Batch Script Bug

Just reporting an error in the batch script for the new version of code.

Omniverse Code 2022-3.0
omni.code.replicator.bat calls an execution to apps/omni.code.replicator.kit which doesn’t exist. I manually changed the batch script to point to full.kit to make it work.
BEFORE:

@echo off
setlocal
call "%~dp0kit\kit.exe" "%%~dp0apps/omni.code.replicator.kit" --vulkan --/app/asyncRendering=false %*

AFTER:

@echo off
setlocal
call "%~dp0kit\kit.exe" "%%~dp0apps/omni.code.full.kit" --vulkan --/app/asyncRendering=false %*

Hello @michael.lombardo! I’ve sent this over to the dev team to fix. Thank you for reporting this!

A development ticket was created from this post. OM-75828: Code 2022-3.0 Batch Script Bug