Skip to content

Commit a34f744

Browse files
committed
lib/update-fetch.js: fix typo RESTORE_SQASHFS_FILE => RESTORE_SQUASHFS_FILE
Signed-off-by: Rick Waldron <[email protected]>
1 parent fbd724d commit a34f744

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/update-fetch.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ const FIRMWARE_BINARY_FILE = 'firmware.bin';
2323

2424
const RESTORE_TGZ_URL = 'https://s3.amazonaws.com/builds.tessel.io/custom/new_build_next.tar.gz';
2525
const RESTORE_UBOOT_FILE = 'openwrt-ramips-mt7620-Default-u-boot.bin';
26-
const RESTORE_SQASHFS_FILE = 'openwrt-ramips-mt7620-tessel-squashfs-sysupgrade.bin';
26+
const RESTORE_SQUASHFS_FILE = 'openwrt-ramips-mt7620-tessel-squashfs-sysupgrade.bin';
2727

2828
var exportables = {
2929
OPENWRT_BINARY_FILE,
3030
FIRMWARE_BINARY_FILE,
3131
RESTORE_UBOOT_FILE,
32-
RESTORE_SQASHFS_FILE,
32+
RESTORE_SQUASHFS_FILE,
3333
};
3434

3535
/*
@@ -112,7 +112,7 @@ exportables.loadLocalBinary = function(path) {
112112
exportables.fetchRestore = function() {
113113
return exportables.downloadTgz(RESTORE_TGZ_URL, {
114114
uboot: RESTORE_UBOOT_FILE,
115-
squashfs: RESTORE_SQASHFS_FILE
115+
squashfs: RESTORE_SQUASHFS_FILE
116116
});
117117
};
118118

0 commit comments

Comments
 (0)