On Monday, December 16, 2013 at 06:06 EST,
Jayesh Jayan <
jayesh...@gmail.com> wrote:
> I am also stuck with the downloading AOSP source code related to Kitkat
> 4.4.2
>
> Further debugging points me to the below issues, and thus sync doesn't
> complete. This is a fresh sync that I am doing now.
>
> $ repo sync device/asus/deb
> Fetching project device/asus/deb
> Fetching projects: 100% (1/1), done.
> error: manifest required for this command -- please run init
This error message is rather misleading. It actually indicates that
Repo can't open the HEAD file of the git. I'd run repo under strace
(i.e. 'strace -f repo sync device/asus/deb') to see exactly what's
going on. Alternatively, change
except IOError:
raise NoManifestException(path)
in .repo/repo/project.py to
except IOError as e:
raise Exception(e)
to bypass Repo's translation of the actual error.
[...]
--
Magnus Bäck
ba...@google.com