Browse Source

There was a much cleaner way to handle multiple _vcs_only satellites

master
mid-kid 8 years ago
parent
commit
b9fef43b71
  1. 9
      astronaut/astronaut

9
astronaut/astronaut

@ -295,7 +295,7 @@ header_end() { :; }
if [ "$_vcs_only" = true ]; then if [ "$_vcs_only" = true ]; then
header_end() { header_end() {
if [ "$vcs_compile" = false ]; then if [ "$vcs_compile" = false ]; then
exit 57 exit
fi fi
} }
fi fi
@ -366,12 +366,5 @@ for _satellite in "$@"; do
_astronaut_wrapper_post _astronaut_wrapper_post
fi fi
) || (
_exit="$?"
if [ "$_vcs_only" = true -a "$vcs_compile" = false -a "$_exit" = 57 ]; then
continue
else
exit "$_exit"
fi
) )
done done

Loading…
Cancel
Save