Skip to content

Commit

Permalink
Fix Drops-of-Diamond#7 by making sure "." is in search path
Browse files Browse the repository at this point in the history
  • Loading branch information
xkr47 committed Sep 11, 2017
1 parent aa2a4a5 commit 2996807
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .githooks/license-maintainer/pre-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/perl

# Copyright 2013, 2015 Nitor Creations Oy, Jonas Berlin
# Copyright 2013, 2015, 2017 Nitor Creations Oy, Jonas Berlin
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -14,6 +14,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.

BEGIN {
push @INC, '.';
}

use strict;
use warnings;
use IPC::Open2;
Expand Down

0 comments on commit 2996807

Please sign in to comment.