Subversion Repositories camp_sysinfo_client_3

Rev

Rev 197 | Rev 210 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 197 Rev 209
Line 195... Line 195...
195
 
195
 
196
# find our location and use it for searching for libraries
196
# find our location and use it for searching for libraries
197
BEGIN {
197
BEGIN {
198
   use FindBin;
198
   use FindBin;
199
   use File::Spec;
199
   use File::Spec;
-
 
200
   use Cwd 'abs_path';
200
   use lib File::Spec->catdir($FindBin::Bin);
201
   use lib abs_path( File::Spec->catdir($FindBin::Bin) );
201
   eval( 'use YAML::Tiny;' );
202
   eval( 'use YAML::Tiny;' );
202
   eval( 'use Data::Dumper;' );
203
   eval( 'use Data::Dumper;' );
203
}
204
}
204
 
205
 
205
# contains the directory our script is in
206
# contains the directory our script is in
206
my $sourceDir = File::Spec->catdir($FindBin::Bin);
207
my $sourceDir = abs_path( File::Spec->catdir($FindBin::Bin) );
207
 
208
 
208
# define the version number
209
# define the version number
209
# see https://metacpan.org/pod/release/JPEACOCK/version-0.97/lib/version.pod
210
# see https://metacpan.org/pod/release/JPEACOCK/version-0.97/lib/version.pod
210
use version;
211
use version;
211
our $VERSION = version->declare("v3.6.0");
212
our $VERSION = version->declare("v3.6.0");