Skip to content

Commit

Permalink
Added myself to credits
Browse files Browse the repository at this point in the history
  • Loading branch information
hercynium committed Sep 9, 2009
1 parent ff29602 commit 6b34fa6
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions BuildStem.pm
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ sub process_script_files {
my $demo_dir = File::Spec->catdir($self->blib, 'demo');
File::Path::mkpath( $script_dir );
File::Path::mkpath( $demo_dir );
$self->add_to_cleanup($demo_dir);

foreach my $file (keys %$files) {
my $dest_dir = $file =~ /_demo$/ ? $demo_dir : $script_dir ;
Expand All @@ -46,6 +47,7 @@ sub process_conf_files {
my $conf_dir = File::Spec->catdir($self->blib, 'conf');
File::Path::mkpath( $conf_dir );


foreach my $file (keys %$files) {
my $result = $self->copy_if_modified($file, $conf_dir, 'flatten') or next;
$self->fix_shebang_line($result) if $self->is_unixish();
Expand Down
1 change: 1 addition & 0 deletions CREDITS
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
People besides Uri who've contributed to Stem code and docs:

Dave Rolsky - various code, bug fixes, docs, etc.
Stephen R. Scaffidi - various bug fixes, docs, etc.
3 changes: 3 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
^blib/
^MakeMaker-\d

# demo files so we don't need to install
^demo/

# Temp, old and emacs backup files.
~$
\.old$
Expand Down
1 change: 1 addition & 0 deletions bin/chat2_demo
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ $xskip = ( $^O eq 'solaris' ) ? 600 : 500 ;

use File::Basename qw( basename );
$ENV{PATH} .= ':' . basename( $0 ) . ':.';

for my $prog qw( run_stem xterm telnet ) {
die "Can't find $prog in PATH\n" if
system( "which $prog >/dev/null 2>&1" ) != 0;
Expand Down
1 change: 1 addition & 0 deletions bin/run_stem
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'


eval { use lib 'blib/lib' } if -d 'blib/lib';
eval { use lib '../blib/lib' } if -d '../blib/lib';

$Data::Dumper::Indent = 1 ;
$Data::Dumper::Purity = 1 ;
Expand Down

0 comments on commit 6b34fa6

Please sign in to comment.