Skip to content

Commit 8021051

Browse files
authored
Merge pull request #167 from desktop/a-new-update
bump the native package
2 parents 57e519f + 05dc82d commit 8021051

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

script/config.js

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,23 @@ function getConfig() {
1313
}
1414

1515
if (process.platform === 'darwin') {
16-
config.checksum = '30eb68d28bbb9c88e644ad3c025c4e0bbf43b77317a346d342c449a52143b1a7'
16+
config.checksum = '65d608eb16e0e262bae6bd7828b28cf640455e949003fec94c1233e084b9ccde'
1717
config.source =
18-
'https://github.com/desktop/dugite-native/releases/download/v2.16.1/dugite-native-v2.16.1-macOS-75.tar.gz'
18+
'https://github.com/desktop/dugite-native/releases/download/v2.16.2/dugite-native-v2.16.2-macOS-119.tar.gz'
1919
} else if (process.platform === 'win32') {
20-
config.checksum = '856b5ff7b791210b5bf8f3a9daab03be02b020823c568ef2aa60f906c1a978e6'
20+
config.checksum = 'c84d31baa8d5c782bbf2a421c0231895c8515b09f698653d70e491b4ffdc1db3'
2121
config.source =
22-
'https://github.com/desktop/dugite-native/releases/download/v2.16.1/dugite-native-v2.16.1-win32-75.tar.gz'
22+
'https://github.com/desktop/dugite-native/releases/download/v2.16.2/dugite-native-v2.16.2-win32-119.tar.gz'
2323
} else if (process.platform === 'linux') {
24-
config.checksum = 'fefb2675957a2b878eb792b176ef801058772679e8472af9585b02521656509e'
25-
config.source =
26-
'https://github.com/desktop/dugite-native/releases/download/v2.16.1/dugite-native-v2.16.1-ubuntu-75.tar.gz'
24+
if (os.arch() === 'arm64') {
25+
config.checksum = '05f2d1681f0620689a6bc1abae417d0d23e3bea55e28f4bc91467c41edc9dd6d'
26+
config.source =
27+
'https://github.com/desktop/dugite-native/releases/download/v2.16.2/dugite-native-v2.16.2-arm64-119.tar.gz'
28+
} else {
29+
config.checksum = '831dddd2381bb7a85f45b35911f123d062a2bdacf2116181503a1293e58a6e79'
30+
config.source =
31+
'https://github.com/desktop/dugite-native/releases/download/v2.16.2/dugite-native-v2.16.2-ubuntu-119.tar.gz'
32+
}
2733
}
2834

2935
if (config.source !== '') {

test/helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { GitProcess, IGitResult } from '../lib'
22

33
// NOTE: bump these versions to the latest stable releases
4-
export const gitVersion = '2.16.1'
4+
export const gitVersion = '2.16.2'
55
export const gitLfsVersion = '2.3.4'
66

77
const temp = require('temp').track()

0 commit comments

Comments
 (0)