diff --git a/rebuild.sh b/rebuild.sh new file mode 100644 index 0000000000000000000000000000000000000000..ff8547717e6eedfa82fad340cdac6cc0c3900cba --- /dev/null +++ b/rebuild.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# this is a helper script to rebuild all base images and then all dependant images +# rebuilding dind image is too dangerous + +BASE="jessie sid" + +DEPS="vlc-debian-unstable vlc-debian-android vlc-debian-win32 vlc-debian-win64" + +for type in $BASE; do + make -C videolan-base/$type push +done + +for dep in $DEPS; do + make -C $dep push +done