X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/f9c7f7df804b1e362de3e8385f95b82fc1210ad7..f0288c6096cf43b4d5663492f7a51eedc5bf49c9:/devedit.pl diff --git a/devedit.pl b/devedit.pl index 54dd3d2..1de2d78 100644 --- a/devedit.pl +++ b/devedit.pl @@ -1,12 +1,12 @@ #!C:/Programme/Perl/bin/perl.exe -w # -# Dev-Editor 2.3.1 +# Dev-Editor 2.3.2 # # Dev-Editor's main program # # Author: Patrick Canterino -# Last modified: 2005-02-14 +# Last modified: 2005-02-19 # use strict; @@ -23,7 +23,7 @@ use Command; use Output; use Tool; -$VERSION = '2.3.1'; +$VERSION = '2.3.2'; # Path to configuration file # Change if necessary! @@ -37,7 +37,7 @@ error_template($config->{'templates'}->{'error'}); # Yes, I'm lazy... # Check if the root directory exists -abort($config->{'errors'}->{'no_root_dir'}) unless(-d $config->{'fileroot'}); +abort($config->{'errors'}->{'no_root_dir'}) unless(-d $config->{'fileroot'} && not -l $config->{'fileroot'}); # Check if we are able to access the root directory