Commit: 716315d9fd961fcdcd84fcaeee0cd85ec9f98c7a Author: Anatol Belski <[email protected]> Thu, 10 Aug 2017 22:40:55 +0200 Parents: cbce1434569f85b7fa3c75f3c59cd6385b4b73da Branches: master
Link: http://git.php.net/?p=web/rmtools.git;a=commitdiff;h=716315d9fd961fcdcd84fcaeee0cd85ec9f98c7a Log: fix wrong var used Changed paths: M bin/pecl_rss_task.bat Diff: diff --git a/bin/pecl_rss_task.bat b/bin/pecl_rss_task.bat index cd89708..bf44501 100644 --- a/bin/pecl_rss_task.bat +++ b/bin/pecl_rss_task.bat @@ -18,7 +18,7 @@ echo output of the underlaying worker below. This script will echo fetch the items from the current RSS feed, download and echo put them into the build queue. echo ========================================================== -call %PHP_RMTOOLS_SCRIPT_PATH%\pecl_rss.bat +call %PHP_RMTOOLS_BIN_PATH%\pecl_rss.bat GOTO EXIT_LOCKED :skip_help @@ -31,7 +31,7 @@ GOTO EXIT_LOCKED ECHO running > %PHP_RMTOOLS_LOCK_PATH%\pecl-rss.lock -call %PHP_RMTOOLS_SCRIPT_PATH%\pecl_rss.bat %* >> %LOG_FILE% 2<&1 +call %PHP_RMTOOLS_BIN_PATH%\pecl_rss.bat %* >> %LOG_FILE% 2<&1 echo Done.>> %LOG_FILE% -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
