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
Fix builds of windows integration tests caused by messed up path
When ${{ github.workspace }} gets resolved, it has windows separators in it, which are getting lost when passed as a flag to the Python script.
i.e. what starts as
D:\a\firebase-cpp-sdk\firebase-cpp-sdk
turns into
afirebase-cpp-sdkfirebase-cpp-sdk
Wrapping the value in quotes prevents these slashes from being lost.
0 commit comments