diff options
| author | Paul Buetow <paul@buetow.org> | 2010-06-12 08:56:47 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2010-06-12 08:56:47 +0000 |
| commit | 905bd4a6d05cd92c574e11f25a43d60fe437228b (patch) | |
| tree | 38dc23ca0c6628d7c2ee83f0194622ce164c7815 | |
| parent | ad4eb8964d59b328256563e31222010c18c0f130 (diff) | |
| -rwxr-xr-x | pwgrep.sh | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -39,7 +39,8 @@ [ -z $PWFILEDIREXT ] && PWFILEDIREXT=files # Enter here your GnuPG key ID -[ -z $GPGKEYID ] && GPGKEYID=F4B6FFF0 +#[ -z $GPGKEYID ] && GPGKEYID=F4B6FFF0 +[ -z $GPGKEYID ] && GPGKEYID=37EC5C1D # Customizing the versioning commands (i.e. if you want to use another # versioning system). @@ -63,8 +64,12 @@ umask 177 cd $PWGREPWORKDIR || error "No such file or directory: $PWGREPWORKDIR" +function out { + echo "$@" +} + function info { - echo "=====> $@" + out "=====> $@" } function error { |
