aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2016-07-21 10:57:47 -0700
committerRobin H. Johnson <robbat2@gentoo.org>2016-07-21 10:57:47 -0700
commit672613c1a37c84d7af4dc0d56b2df3a138ca5813 (patch)
tree8c3c6407ab0e5c8db469644fb1bdfe67fe20409f /countify
parentPrepare the trustees-201606 election. (diff)
downloadelections-672613c1a37c84d7af4dc0d56b2df3a138ca5813.tar.gz
elections-672613c1a37c84d7af4dc0d56b2df3a138ca5813.tar.bz2
elections-672613c1a37c84d7af4dc0d56b2df3a138ca5813.zip
Resolve symlinks to find the correct elections directory.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'countify')
-rwxr-xr-xcountify5
1 files changed, 3 insertions, 2 deletions
diff --git a/countify b/countify
index 9f3e6f0..13618a4 100755
--- a/countify
+++ b/countify
@@ -12,8 +12,9 @@ BEGIN {
if(-f '/etc/elections/Votify.pm') {
$dirname = '/etc/elections';
} else {
- use File::Basename;
- $dirname = dirname(__FILE__);
+ use Cwd qw(abs_path);
+ use File::Basename qw(dirname);
+ $dirname = dirname(abs_path(__FILE__));
}
push @INC, $dirname;
}