Skip to content
This repository has been archived by the owner on Mar 8, 2021. It is now read-only.

Commit

Permalink
Fix list_all_subprojects.
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Aug 29, 2011
1 parent 4c585a1 commit 1c2ef5b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions repotool
Expand Up @@ -4,9 +4,9 @@ set -e

function list_all_repos()
{
cat subprojects
if test -f extra-subprojects; then
cat extra-subprojects
cat $MYDIR/subprojects
if test -f $MYDIR/extra-subprojects; then
cat $MYDIR/extra-subprojects
fi
}

Expand Down

0 comments on commit 1c2ef5b

Please sign in to comment.