skel for matt
This commit is contained in:
parent
522d8c42a7
commit
c0e81168c5
1 changed files with 26 additions and 0 deletions
26
docs/upgrades/upgrade_6.5.2-6.5.3.pl
Normal file
26
docs/upgrades/upgrade_6.5.2-6.5.3.pl
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
use lib "../../lib";
|
||||
use Getopt::Long;
|
||||
use strict;
|
||||
use WebGUI::Session;
|
||||
use WebGUI::Asset;
|
||||
|
||||
my $configFile;
|
||||
my $quiet;
|
||||
|
||||
GetOptions(
|
||||
'configFile=s'=>\$configFile,
|
||||
'quiet'=>\$quiet
|
||||
);
|
||||
|
||||
WebGUI::Session::open("../..",$configFile);
|
||||
|
||||
#--------------------------------------------
|
||||
print "\tmatt's going to do something here\n" unless ($quiet);
|
||||
|
||||
|
||||
|
||||
WebGUI::Session::close();
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue