From b966968f9ccf1db640ea27978413d22f554635d0 Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Sat, 15 Jun 2013 10:36:52 -0700 Subject: [PATCH] Fix typo in __STAGE_FILE__. --- bin/pt-agent | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pt-agent b/bin/pt-agent index f93813c2..09616b32 100755 --- a/bin/pt-agent +++ b/bin/pt-agent @@ -7214,7 +7214,7 @@ sub replace_special_vars { $word =~ s/__META__/$meta_dir/g; $word =~ s/__STAGE__/$stage_dir/g; $word =~ s/__SERVICE__/$service/g; - $word =~ s/__STAGE_FILE_/$stage_dir\/$ts.$service/g; + $word =~ s/__STAGE_FILE__/$stage_dir\/$ts.$service/g; $word =~ s/__META_FILE__/$meta_dir\/$service.meta/g; $word =~ s/__BIN_DIR__/$bin_dir/g; $word =~ s/__TRASH_FILE__/$spool_dir\/.trash\/$service/g;