Skip to content

Commit 744af18

Browse files
committed
update repo urls [ci skip]
1 parent a5e5c01 commit 744af18

9 files changed

Lines changed: 10 additions & 10 deletions

lib/archivers/archive-entry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
var ArchiveEntry = module.exports = function() {};
99

lib/archivers/archive-output-stream.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
var inherits = require('util').inherits;
99
var Transform = require('readable-stream').Transform;

lib/archivers/zip/constants.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
module.exports = {
99
WORD: 4,
@@ -52,7 +52,7 @@ module.exports = {
5252
EXT_FILE_ATTR_FILE: 020151000040, // 644 -rw-r--r-- = (((S_IFREG | 0644) << 16) | S_DOS_A) >>> 0
5353

5454
// Unix file types
55-
S_IFMT: 0170000, // type of file mask
55+
S_IFMT: 0170000, // type of file mask
5656
S_IFIFO: 010000, // named pipe (fifo)
5757
S_IFCHR: 020000, // character special
5858
S_IFDIR: 040000, // directory

lib/archivers/zip/general-purpose-bit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
var zipUtil = require('./util');
99

lib/archivers/zip/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
var Int64 = require('node-int64');
99
var util = module.exports = {};

lib/archivers/zip/zip-archive-entry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
var inherits = require('util').inherits;
99

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
var inherits = require('util').inherits;
99
var crc32 = require('buffer-crc32');

lib/compress-commons.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
module.exports = {
99
ArchiveEntry: require('./archivers/archive-entry'),

lib/util/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2014 Chris Talkington, contributors.
55
* Licensed under the MIT license.
6-
* https://github.com/ctalkington/node-compress-commons/blob/master/LICENSE-MIT
6+
* https://github.com/archiverjs/node-compress-commons/blob/master/LICENSE-MIT
77
*/
88
var Stream = require('stream').Stream;
99
var PassThrough = require('readable-stream').PassThrough;

0 commit comments

Comments
 (0)