Skip to content

Commit

Permalink
rename .ic-version to _ic_version for style consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
David Christensen committed Nov 2, 2017
1 parent 766f4a2 commit 85cc168
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -66,4 +66,4 @@ scripts/update
Vagrantfile
*.swp
*~
.ic-version
_ic_version
2 changes: 1 addition & 1 deletion MANIFEST
Expand Up @@ -1291,4 +1291,4 @@ t/interchange-test/variable.txt
test.pl
UPGRADE
WHATSNEW
.ic-version
_ic_version
6 changes: 3 additions & 3 deletions Makefile.PL
Expand Up @@ -29,7 +29,7 @@ my @mods_to_get;
my @remove_old;
my $Lock_troubles;

$VERSION = eval { require './.ic-version' } || '5.12.0';
$VERSION = eval { require './_ic_version' } || '5.12.0';

my @os_hints;
eval {
Expand Down Expand Up @@ -711,7 +711,7 @@ EOF
if (-d "./.git") {
$X{VERSION} = qx(git describe --tags --dirty);
chomp $X{VERSION};
system(qq{echo '"$X{VERSION}"' > .ic-version});
system(qq{echo '"$X{VERSION}"' > _ic_version});
}
else {
$X{VERSION} = $VERSION;
Expand Down Expand Up @@ -857,7 +857,7 @@ WriteMakefile(
NAME => "Interchange",
DISTNAME => "interchange",
clean => {
FILES => "lib/IniConf.pm _uid _db_storable _allow_threads _session_storable lib/File/CounterFile.pm scripts/initp.pl scripts/compile_link scripts/config_prog scripts/configdump scripts/expire scripts/localize scripts/expireall scripts/makecat scripts/ic_mod_perl scripts/interchange scripts/offline scripts/restart scripts/update .ic-version",
FILES => "lib/IniConf.pm _uid _db_storable _allow_threads _session_storable lib/File/CounterFile.pm scripts/initp.pl scripts/compile_link scripts/config_prog scripts/configdump scripts/expire scripts/localize scripts/expireall scripts/makecat scripts/ic_mod_perl scripts/interchange scripts/offline scripts/restart scripts/update _ic_version",
},

dist => {
Expand Down

0 comments on commit 85cc168

Please sign in to comment.