]> git.ipfire.org Git - thirdparty/git.git/blame - unpack-file.c
Fix a test failure (t9500-*.sh) on cygwin
[thirdparty/git.git] / unpack-file.c
CommitLineData
3407bb49 1#include "cache.h"
8e440259 2#include "blob.h"
3407bb49
LT
3
4static char *create_temp_file(unsigned char *sha1)
5{
6 static char path[50];
7 void *buf;
21666f1a 8 enum object_type type;
3407bb49
LT
9 unsigned long size;
10 int fd;
11
21666f1a
NP
12 buf = read_sha1_file(sha1, &type, &size);
13 if (!buf || type != OBJ_BLOB)
3407bb49
LT
14 die("unable to read blob object %s", sha1_to_hex(sha1));
15
16 strcpy(path, ".merge_file_XXXXXX");
7647b17f 17 fd = xmkstemp(path);
93822c22 18 if (write_in_full(fd, buf, size) != size)
3407bb49
LT
19 die("unable to write temp-file");
20 close(fd);
21 return path;
22}
23
24int main(int argc, char **argv)
25{
26 unsigned char sha1[20];
27
31fff305 28 if (argc != 2)
667bb59b 29 usage("git-unpack-file <sha1>");
31fff305
DL
30 if (get_sha1(argv[1], sha1))
31 die("Not a valid object name %s", argv[1]);
3407bb49 32
53228a5f 33 setup_git_directory();
84a9b58c 34 git_config(git_default_config);
53228a5f 35
3407bb49
LT
36 puts(create_temp_file(sha1));
37 return 0;
38}