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
Updating the vsi_common submodule from just on windows, will cause git to error if it tries to rewrite the just file itself, as it is in use, and Windows doesn't support this like *nix does.
The result is a horrible explosion of a partially checked out vsi_common repo, in a dirty state, that takes both a git reset --hard and git clean df, followed by a manual update.
Possible solutions:
Someway to detangle using the just file on windows, an exec to a tmp file?
setup.env could define the function just instead, that would source what is currently the file just
git hook on windows, to keep vsi_common up to date...
Detecting the problem before it happens, and echoing out that you need to git submodule update --recursive vsi_common manually
The text was updated successfully, but these errors were encountered:
Updating the
vsi_common
submodule fromjust
on windows, will causegit
to error if it tries to rewrite thejust
file itself, as it is in use, and Windows doesn't support this like *nix does.The result is a horrible explosion of a partially checked out vsi_common repo, in a dirty state, that takes both a
git reset --hard
andgit clean df
, followed by a manual update.Possible solutions:
just
file on windows, an exec to a tmp file?setup.env
could define the functionjust
instead, that would source what is currently the file justgit submodule update --recursive vsi_common
manuallyThe text was updated successfully, but these errors were encountered: