You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"
The text was updated successfully, but these errors were encountered:
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"
The text was updated successfully, but these errors were encountered: