10 lines
230 B
Bash
Executable File
10 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#sign a package with rerdavies@gmail.com's private key.
|
|
cd build
|
|
for filename in *.deb; do
|
|
echo gpg --armor --output "$filename".asc -b "$filename"
|
|
|
|
gpg --armor --output "$filename".asc -b "$filename"
|
|
done
|
|
cd .. |