azure-node-runtime-selector
azure-node-runtime-selector copied to clipboard
KUDU_SYNC_CMD issue on deployment
With today's deployment there is an error related to KUDU_SYNC_CMD. Everything worked before. The error related to line 111 in deploy.sh.
After short research it is likely occurring, because $KUDU_SYNC_CMD is now set in environment and the path is Windows based (KUDU_SYNC_CMD="D:\kuduservice\wwwroot\bin\scripts\kudusync").
After adding below line (just changed to Linux style slashes) to deploy.sh before the if related to KUDU_SYNC_CMD all works fine: KUDU_SYNC_CMD="D:/kuduservice/wwwroot/bin/scripts/kudusync"