Skip to content

Commit

Permalink
remove the .pl extension from some of the utility scripts.
Browse files Browse the repository at this point in the history
This just makes things more uniform.
  • Loading branch information
Kent Mein committed Jul 13, 2015
1 parent b3f18fa commit 093a0ac
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions doc/INSTALLING
@@ -1,7 +1,7 @@
SETTING THINGS UP:
---------------------------------------------------------------------
cd to your gurbalib dir and perform the following actions:
perl scripts/create_data_dirs.pl
perl scripts/create_data_dirs
This creates empty directories that are not stored in the
repository. If you do not have perl on your system you can
just read the script and figure out what directorys to create.
Expand Down Expand Up @@ -65,7 +65,7 @@ Downloading additional documentation.
cd ../..

You can also run the following script to download yet more docs:
./scripts/download_lpc_docs.pl
./scripts/download_lpc_docs


Gurbalib ships with an ftp server which is enabled by default,
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scripts/clean_logs
Expand Up @@ -9,7 +9,7 @@ sub rm_dir {
}
}

if (!-f "scripts/create_data_dirs.pl") {
if (!-f "scripts/create_data_dirs") {
print "Error I'm not in the right location. You need to run this script\n";
print "in the base directory gurablib.\n";
print "\tcd to your gurbalib then type: scripts/clean_logs\n";
Expand Down
6 changes: 3 additions & 3 deletions scripts/clean_mud
Expand Up @@ -9,10 +9,10 @@ sub rm_dir {
}
}

if (!-f "scripts/create_data_dirs.pl") {
if (!-f "scripts/create_data_dirs") {
print "Error I'm not in the right location. You need to run this script\n";
print "in the base directory gurablib.\n";
print "\tcd to your gurbalib then type: scripts/create_data_dirs.pl\n";
print "\tcd to your gurbalib then type: scripts/create_data_dirs\n";
exit 1;
}

Expand Down Expand Up @@ -42,5 +42,5 @@ rm_dir("lib/tmp");
rm_dir("lib/logs");
rm_dir("lib/wiz");

print "You should run scripts/create_data_dirs.pl to recreate your " .
print "You should run scripts/create_data_dirs to recreate your " .
"data directories.\n";
4 changes: 2 additions & 2 deletions scripts/create_data_dirs.pl → scripts/create_data_dirs
Expand Up @@ -11,10 +11,10 @@ sub makedir {
# system("touch $infile/blah");
}

if (!(-f "scripts/create_data_dirs.pl")) {
if (!(-f "scripts/create_data_dirs")) {
print "Error I'm not in the right location. You need to run this script\n";
print "in the base directory gurablib.\n";
print "\tcd to your gurbalib then type: scripts/create_data_dirs.pl\n";
print "\tcd to your gurbalib then type: scripts/create_data_dirs\n";
exit 1;
}

Expand Down
2 changes: 1 addition & 1 deletion scripts/download_lpc_docs.pl → scripts/download_lpc_docs
Expand Up @@ -2,7 +2,7 @@
#
# Use this script to download extra introduction to LPC documentation.
# You should run this script from the gurbalib directory
# (./scripts/download_lpc_docs.pl)
# (./scripts/download_lpc_docs)
# $root is the final location of the docs.
my $root = "./lib/doc/lpc";
my ($fh, $i, $wget);
Expand Down
2 changes: 1 addition & 1 deletion scripts/startmud
Expand Up @@ -5,7 +5,7 @@ if [ -d ./lib/logs ]; then
mv $LOG $LOG.old
else
echo "Cannot locate ./lib/logs"
echo "did you run scripts/create_data_dirs.pl?"
echo "did you run scripts/create_data_dirs?"
exit 1
fi

Expand Down

0 comments on commit 093a0ac

Please sign in to comment.