Just setting up environment and I get this error.

$ repo init -u https://android.googlesource.com/platform/manifest
  File "/home/android-dev/bin/repo", line 184
    except OSError, e:
                  ^
I looked at repo script and found that the error occurs here:
  if not os.path.isdir(repodir):
    try:
      os.mkdir(repodir)
    except OSError, e:
      print >>sys.stderr, \
            'fatal: cannot make %s directory: %s' % (
            repodir, e.strerror)
      # Don't faise CloneFailure; that would delete the
      # name. Instead exit immediately.
      #
      sys.exit(1)

However, the message does not print.

My system:
$ uname -a
Linux bw-desktop 3.0.29-1-lts #1 SMP PREEMPT Mon Apr 23 10:02:22 UTC
2012 i686 Intel(R) Pentium(R) 4 CPU 3.00GHz GenuineIntel GNU/Linux

$ git --version
git version 1.7.10.1

I added a new user: android-dev
and 'su android-dev'

Then I followed the directions on source.android.com/source/
downloading.html

Thank you.

Regards,
Brian

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to