]> git.p6c8.net - devedit.git/commitdiff
Now, the root directory must not be a symbolic link. version_2_3_1
authorpcanterino <>
Sat, 19 Feb 2005 09:42:04 +0000 (09:42 +0000)
committerpcanterino <>
Sat, 19 Feb 2005 09:42:04 +0000 (09:42 +0000)
Sorry for this, I really would have liked to allow the root directory to be a
symbolic link, but if I would allow this, Dev-Editor would not be able to create
files in the root directory. I'm looking for an alternative...

devedit.pl

index 54dd3d2e57b990b667f00749c0686b2f98de1ab0..fc49a7189c1a911b72e9e28ec90eeb94450755a0 100644 (file)
@@ -6,7 +6,7 @@
 # Dev-Editor's main program
 #
 # Author:        Patrick Canterino <patrick@patshaping.de>
-# Last modified: 2005-02-14
+# Last modified: 2005-02-19
 #
 
 use strict;
@@ -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
 

patrick-canterino.de