We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bddf021 commit 3a1893eCopy full SHA for 3a1893e
git-npx.js
@@ -67,7 +67,7 @@ export async function cli(args) {
67
const files = zip.getEntries();
68
files.forEach(file => {
69
//Only copy files as we are handling the folders
70
- if (file.entryName.includes('.')) {
+ if (!file.entryName.endsWith('/')) {
71
let newDestination = destination;
72
//Remove the root directory
73
let entryPath = file.entryName.substring(file.entryName.indexOf('/') + 1, file.entryName.length);
0 commit comments