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
|