correct name of the findpath script (#27) (#213)

This commit is contained in:
James Xu 2019-03-29 14:16:17 -07:00 committed by Dirk Thomas
parent 79d07b53e0
commit 5a29312432
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ if "%1" equ "" (
exit /b 1
)
for /f "tokens=*" %%g in ('call python %~dp0\findpath.py %1 forceeval') do (
for /f "tokens=*" %%g in ('call python %~dp0\rosfindpath.py %1 forceeval') do (
set target_path=%%~g
)

View File

@ -1,7 +1,7 @@
@echo off
if "%1" equ "--help" goto :usage
for /f "tokens=*" %%g in ('call python %~dp0\findpath.py %1 forceeval') do (
for /f "tokens=*" %%g in ('call python %~dp0\rosfindpath.py %1 forceeval') do (
set target_path=%%~g
)