Comment 20 for bug 1817774

Revision history for this message
John A Meinel (jameinel) wrote :

I confirmed that at least 2.6/edge has been updated:
$ snap info juju
...
installed: 2.6.11+2.6-b96e122 (10408) 75MB classic
$ sudo snap run --shell juju
# cat /snap/juju/current/meta/hooks/configure
#!/bin/bash

# Make sure we have lxd installed to use
if [ "$(which lxd)" = "" ]; then
    snap install lxd || true
fi

# copy bash completions to host system
cp -a $SNAP/bash_completions/* /usr/share/bash-completion/completions/. || true