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 git checkout ${PLUGINS_COMMIT} || echo "No such commit, branch, or version; failing here." & exit 1
Doesn't return error message but it stalls forever (presumably because it's triggering exit)
With git checkout ${PLUGINS_COMMIT} || echo "No such commit, branch, or version; failing here." && exit 1
Returns more information but is still presumably triggering exit as it stalls forever after checkout.
With git checkout ${PLUGINS_COMMIT} || echo "No such commit, branch, or version; failing here." it proceeds.
The text was updated successfully, but these errors were encountered:
With
git checkout ${PLUGINS_COMMIT} || echo "No such commit, branch, or version; failing here." & exit 1
Doesn't return error message but it stalls forever (presumably because it's triggering exit)
With
git checkout ${PLUGINS_COMMIT} || echo "No such commit, branch, or version; failing here." && exit 1
Returns more information but is still presumably triggering exit as it stalls forever after checkout.
With
git checkout ${PLUGINS_COMMIT} || echo "No such commit, branch, or version; failing here."
it proceeds.The text was updated successfully, but these errors were encountered: