Skip to content

Commit

Permalink
[build-scripts] be more robust about startup directory
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Oct 18, 2010
1 parent 66aacfe commit 671fe6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions build-scripts/rebuild-nqp-rx.sh
@@ -1,4 +1,5 @@
#!/bin/sh
cd
set -e
echo -e "\n\nNew nqp-rx build"
date
Expand Down
1 change: 1 addition & 0 deletions build-scripts/rebuild-partcl-nqp.sh
@@ -1,4 +1,5 @@
#!/bin/sh
cd
PATH=/usr/local/bin:/usr/bin:/bin:/usr/games
echo
echo "updating partcl-nqp"
Expand Down
4 changes: 3 additions & 1 deletion build-scripts/rebuild-rakudo.pl
Expand Up @@ -2,9 +2,11 @@
use warnings;
use File::Path qw(rmtree);
use 5.010;
#use autodie;
use autodie;
use Data::Dumper;

chdir glob '~';

my $home = glob('~') . '/';
my @dirs = qw(p1 p2);
my %swap = (@dirs, reverse(@dirs));
Expand Down

0 comments on commit 671fe6e

Please sign in to comment.