9 lines
134 B
Bash
Executable File
9 lines
134 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
for BINARY in docker-machine_*; do
|
|
sha256sum $BINARY > $BINARY.sha256
|
|
md5sum $BINARY >> $BINARY.md5
|
|
done
|
|
|