summary refs log tree commit diff stats
path: root/pkg
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2020-03-19 14:23:34 +0530
committerAndinus <andinus@nand.sh>2020-03-19 14:23:34 +0530
commit3c7d5a2622e7a0066d7db5b78a57555ffb1ff20a (patch)
tree51e86f68d5a625beda3dbf448a599c7f69ea0e8d /pkg
parent58122b41d2fc536e5f2ad30da70e33e59a18dc90 (diff)
downloadcetus-3c7d5a2622e7a0066d7db5b78a57555ffb1ff20a.tar.gz
Check local cache before downloading background
Diffstat (limited to 'pkg')
-rw-r--r--pkg/background/download.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/background/download.go b/pkg/background/download.go
index fd391a6..78ff135 100644
--- a/pkg/background/download.go
+++ b/pkg/background/download.go
@@ -9,7 +9,7 @@ import (
 
 // Download takes path and url as input and downloads the data to a
 // file, returning an error if there is one
-func Download(file string, url string) (err error) {
+func Download(file string, url string) error {
 	o, err := os.Create(file)
 	if err != nil {
 		return err
0 3385' href='/akkartik/mu/commit/051scenario_test.mu?h=hlt&id=7a84094adbf7570e0b9716d8f469458b901efec8'>7a84094a ^
22b30692 ^

ad8161f3 ^
22b30692 ^






7a84094a ^
22b30692 ^

ad8161f3 ^
0f996b7b ^

d9cd13ad ^
3f7eed6c ^
d9cd13ad ^
7a84094a ^
08f4628e ^


d9cd13ad ^
22b30692 ^
ad8161f3 ^
d9cd13ad ^

22b30692 ^


7a84094a ^
22b30692 ^

ad8161f3 ^
22b30692 ^




7a84094a ^
22b30692 ^

ad8161f3 ^
22b30692 ^




65b3db5d ^
22b30692 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70