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
The script uses `cd $(git rev-parse --show-toplevel)`, which fails if the path has spaces.
Therefore, replaced `cd $(command)` with `cd "$(command)"` to properly handle spaces.
After these changes. it prevents build failures due to incorrect path handling and improves error reporting too.
0 commit comments