Changing bash_profile not to reserve a borrowed cell during sourcing.
Change-Id: I30bb38bd2a2e3d32c1c8019afe8198078bf9124e
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -159,7 +159,7 @@ function cell { | ... | @@ -159,7 +159,7 @@ function cell { |
159 | esac | 159 | esac |
160 | } | 160 | } |
161 | 161 | ||
162 | -[ -n "$ONOS_CELL" ] && cell $ONOS_CELL > /dev/null | 162 | +[ -n "$ONOS_CELL" -a "$ONOS_CELL" != "borrow" ] && cell $ONOS_CELL > /dev/null |
163 | 163 | ||
164 | # Lists available cells | 164 | # Lists available cells |
165 | function cells { | 165 | function cells { | ... | ... |
-
Please register or login to post a comment