diff options
| author | tv <tv@krebsco.de> | 2015-06-18 21:55:04 +0200 | 
|---|---|---|
| committer | tv <tv@krebsco.de> | 2015-06-18 21:55:04 +0200 | 
| commit | 22f60d5c6f0026ef16bec1faafcb0fbe9cb643ce (patch) | |
| tree | e14b6fd50ec905207d745004038be64e0241a64f /lib | |
| parent | c73da15eb4997a727351ec16e5f6200bd00b192a (diff) | |
irc-announce: append PID to nick
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/git.nix | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/lib/git.nix b/lib/git.nix index 706a226..07bb93f 100644 --- a/lib/git.nix +++ b/lib/git.nix @@ -49,10 +49,10 @@ let        netcat      ])} -    IRC_SERVER="$1" -    IRC_PORT="$2" -    IRC_NICK="$3" -    IRC_CHANNEL="$4" +    IRC_SERVER=$1 +    IRC_PORT=$2 +    IRC_NICK=$3$$ +    IRC_CHANNEL=$4      message=$5      export IRC_CHANNEL # for privmsg_cat | 
