Use BSD and Gnu compatible option for tail
Use 'tail -n +2' instead of 'tail +2'. Semanctics are the same but 'tail +2' is not accepted by Gnu tail.
This commit is contained in:
parent
fb1bf12319
commit
c0b6e2e510
|
@ -18,7 +18,7 @@
|
|||
# helper function for completing available machines
|
||||
__machines() {
|
||||
declare -a machines_cmd
|
||||
machines_cmd=($(docker-machine ls|tail +2|awk '{print $1":"$3"("$4")"}'))
|
||||
machines_cmd=($(docker-machine ls|tail -n +2|awk '{print $1":"$3"("$4")"}'))
|
||||
_describe 'machines' machines_cmd
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue