This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let crctable = function() { | |
let c = 0, | |
table = typeof Int32Array !== 'undefined' ? new Int32Array(256) : new Array(256); | |
for (let n = 0; n !== 256; ++n) { | |
c = n; | |
for (let x = 0; x < 8; x++) { | |
c = c & 1 ? -306674912 ^ c >>> 1 : c >>> 1; | |
} | |
table[n] = c; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal EnableExtensions EnableDelayedExpansion | |
pushd "%~dp0" | |
:Download_7zip | |
set version=7z1803 | |
appveyor DownloadFile https://www.7-zip.org/a/%version%-src.7z | |
7z x %version%-src.7z | |
:Patch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Packages | |
*.gz | |
*.bz2 | |
*.xz | |
*.7z | |
*.tar | |
# Source folders | |
nginx/* | |
openssl-*/* |
OlderNewer