mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 12:57:53 +00:00
9d7c783a93
... and add Mint 19 and CentOS 6. The latter currently fails in ctng's configure due to an old libtool; need to make libtool optional. Signed-off-by: Alexey Neyman <stilor@att.net>
9 lines
129 B
Bash
Executable File
9 lines
129 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for c in `docker ps -a -q`; do
|
|
docker rm $c
|
|
done
|
|
for i in `docker images -q`; do
|
|
docker rmi --force $i
|
|
done
|