Skip to content

Commit 431fbb0

Browse files
committed
fix last commit.
1 parent d3743e5 commit 431fbb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/archivers/zip/zip-archive-output-stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ ZipArchiveOutputStream.prototype._writeCentralFileHeader = function(ae) {
251251
this.write(zipUtil.getLongBytes(constants.SIG_CFH));
252252

253253
// version made by
254-
this.write(zipUtil.getShortBytes((ae.getPlatform() << 8) | VERSION_MADEBY));
254+
this.write(zipUtil.getShortBytes((ae.getPlatform() << 8) | constants.VERSION_MADEBY));
255255

256256
// version to extract and general bit flag
257257
this.write(zipUtil.getShortBytes(ae.getVersionNeededToExtract()));

0 commit comments

Comments
 (0)