02b406b6f3
Change-Id: Ib7cc06b3b42f26f725a9ea79f09189cc72952d29
8 lines
198 B
Bash
8 lines
198 B
Bash
#!/bin/bash
|
|
# Wrapper to ensure that old python bytecode isn't hanging around
|
|
# after we upgrade the charm with newer libraries
|
|
rm -rf **/*.pyc
|
|
|
|
./hooks/install_deps
|
|
exec ./hooks/upgrade-charm.real
|