Skip to content

Commit adb982f

Browse files
committed
fix(release): fix zip artifacts on GitHub won't have .
Fixes angular-translate#1840 Fixes angular-translate#1835
1 parent cdb1d7d commit adb982f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_tools/upload-github-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const getChangelog = (changelogFilePath, forVersion) => {
2929
const buildZipArchive = ({lookupDir, archiveFilePath}) => {
3030
return new Promise((resolve) => {
3131
let archive = new AdmZip();
32-
archive.addLocalFolder(lookupDir, '.');
32+
archive.addLocalFolder(lookupDir, 'angular-translate');
3333
archive.writeZip(archiveFilePath);
3434
resolve(archiveFilePath);
3535
});

0 commit comments

Comments
 (0)