5

While trying to clone a git repo - jpeginfo specifically - an error occured,

Cloning into 'jpeginfo'...
remote: Counting objects: 182, done.
remote: Total 182 (delta 0), reused 0 (delta 0), pack-reused 182R
Receiving objects: 100% (182/182), 115.71 KiB | 140.00 KiB/s, done.
Resolving deltas: 100% (99/99), done.
Checking connectivity... done.
fatal: cannot create directory at 'aux': Invalid argument
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry the checkout with 'git checkout -f HEAD'

Apparently 'aux' name of directory is a reserved name on Windows systems. I have no idea how to proceed?

Trying to clone it under cygwin and mingw resulted in the same.

Does anyone have any ideas what would be the easiest way, first - to clone the aforementioned jpeginfo repository, second - to build it under Windows?

Rook
  • 60,248
  • 49
  • 165
  • 242

1 Answers1

1

Unless the project changes the name of that folder (as others did), one solution is to install docker, and clone the repo in a container.

Considering jpeginfo is tested on Unix platforms only (Linux, OS X (Snow Leopard), Solaris, IRIX, and HP-UX), that container will be the right build environment too.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • I don't understand. Would that enable me to build it under Windows environment? – Rook Aug 30 '15 at 15:49
  • @ldigas no, because this project isn't made to be built directly under Windows. It will allow to be built in a Linux environment, through a lightweight Linux VM. – VonC Aug 30 '15 at 15:51