5 lines
70 B
Bash
Executable File
5 lines
70 B
Bash
Executable File
#!/bin/bash
|
|
for f in dist/*.mpf; do
|
|
gpg --yes --detach-sign $f
|
|
done
|