File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
src/github.com/getlantern/go-update Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,6 @@ while outputting a progress meter and supports resuming partial downloads.
113
113
package update
114
114
115
115
import (
116
- "github.com/kardianos/osext"
117
116
"bytes"
118
117
"crypto"
119
118
"crypto/rsa"
@@ -122,13 +121,15 @@ import (
122
121
"crypto/x509"
123
122
"encoding/pem"
124
123
"fmt"
125
- "github.com/getlantern/go-update/download"
126
- "github.com/kr/binarydist"
127
124
"io"
128
125
"io/ioutil"
129
126
"net/http"
130
127
"os"
131
128
"path/filepath"
129
+
130
+ "github.com/getlantern/go-update/download"
131
+ "github.com/kardianos/osext"
132
+ "github.com/kr/binarydist"
132
133
)
133
134
134
135
// The type of a binary patch, if any. Only bsdiff is supported
Original file line number Diff line number Diff line change @@ -7,12 +7,13 @@ import (
7
7
"crypto/rsa"
8
8
"crypto/x509"
9
9
"encoding/pem"
10
- "github.com/kr/binarydist"
11
10
"io/ioutil"
12
11
"net"
13
12
"net/http"
14
13
"os"
15
14
"testing"
15
+
16
+ "github.com/kr/binarydist"
16
17
)
17
18
18
19
var (
You can’t perform that action at this time.
0 commit comments