Skip to content

Commit

Permalink
smoke master fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
Reini Urban committed Dec 28, 2012
1 parent 6f34b18 commit acb3174
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions smoke-parrot
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
suffix=
parrotdir=/usr/src/parrot
smokedir=$parrotdir/smoke
if [ ! -d $smokedir ]; then
smokedir=$parrotdir/master
fi
lsmokedir=$smokedir
opts=
perl=perl
Expand Down
5 changes: 4 additions & 1 deletion smoke-parrots
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Usage: smoke-parrots, smoke-parrots-win, smoke-parrots-msvc

branches="master threads native_pbc native_pbc2 coke/rm_pasm whiteknight/rm_pasm2 \
branches="master native_pbc2 coke/rm_pasm whiteknight/rm_pasm2 \
relocatable-gh800 nqp-p6"
# plus all rurban/* and smoke-me/* remote branches
#plus_egrep_branches="(rurban|smoke-me)/"
Expand All @@ -10,6 +10,9 @@ plus_egrep_branches="origin/"

parrotdir=/usr/src/parrot
smokedir=$parrotdir/smoke
if [ ! -d $smokedir ]; then
smokedir=$parrotdir/master
fi

cd $smokedir || exit 1
base=$(basename $0)
Expand Down

0 comments on commit acb3174

Please sign in to comment.