X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/dff53f21c8fccc7585f785fec893a5773e78a1b6..7f580f3e69cb8cec6e1c4eda0be8fbf4caad0716:/devedit.pl?ds=sidebyside diff --git a/devedit.pl b/devedit.pl index ee4f5fc..b63d3a1 100644 --- a/devedit.pl +++ b/devedit.pl @@ -1,12 +1,12 @@ #!C:/Programme/Perl/bin/perl.exe -w # -# Dev-Editor 2.2a +# Dev-Editor 2.3 # # Dev-Editor's main program # # Author: Patrick Canterino -# Last modified: 2005-01-06 +# Last modified: 2005-02-10 # use strict; @@ -23,7 +23,7 @@ use Command; use Output; use Tool; -$VERSION = '2.2a'; +$VERSION = '2.3'; # Path to configuration file # Change if necessary! @@ -110,8 +110,8 @@ if(-e clean_path($config->{'fileroot'}.'/'.$file)) $uselist->lock or abort($config->{'errors'}->{'lock_failed'},undef,{USELIST => $uselist->{'listfile'}, LOCK_FILE => $uselist->{'lockfile'}}); $uselist->load; - # Create a hash with data submitted by user - # (some other necessary information will also be included) + # Create a hash containing data submitted by the user + # (some other necessary information are also included) my %data = (physical => $physical, virtual => $virtual, @@ -122,10 +122,14 @@ if(-e clean_path($config->{'fileroot'}.'/'.$file)) version => $VERSION, configfile => CONFIGFILE); - my $output = exec_command($command,\%data,$config); # Execute the command... + # Execute the command... - $uselist->unlock; # ... unlock the list with files in use... - print $$output; # ... and show the output of the command + my $output = exec_command($command,\%data,$config); + + # ... unlock the list with files in use and show the output of the command + + $uselist->unlock or abort($config->{'errors'}->{'unlock_failed'},undef,{USELIST => $uselist->{'listfile'}, LOCK_FILE => $uselist->{'lockfile'}}); + print $$output; } else {