Skip to content
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.

Commit

Permalink
fix: dirname must endswith /
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Dec 21, 2015
1 parent 26c8dd7 commit d301194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sync/sqlite3.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ proto.listdiff = function* (fullname, dirIndex) {
for (var version in versions) {
var pkg = versions[version];
var binaryInfo = pkg.binary || {};
pkg.dirname = 'v' + pkg.version;
pkg.dirname = 'v' + pkg.version + '/';
pkg.publish_time = result.data.time[pkg.version];
if (existDirsMap[pkg.dirname]) {
existsCount++;
Expand Down

0 comments on commit d301194

Please sign in to comment.