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
I ran into a few problems when spaces are in the git repo name so I double quoted the paramerter to the update function:
update "$d";
and also check to see if the 'cd' failed:
cd "$dir" ;
if [ "$?" == "1" ]; then
cecho r "Failed to enter the git repo directory. Returning early"
addFailedRepo ${dir};
return
fi
The text was updated successfully, but these errors were encountered:
I ran into a few problems when spaces are in the git repo name so I double quoted the paramerter to the update function:
update "$d";
and also check to see if the 'cd' failed:
cd "$dir" ;
if [ "$?" == "1" ]; then
cecho r "Failed to enter the git repo directory. Returning early"
addFailedRepo ${dir};
return
fi
The text was updated successfully, but these errors were encountered: