rokucommunity / rokucommunity/brighterscript
Files with parens in their names don't get copied
Open
Nobody has claimed this yet.
bug
- Dominant language
- TypeScript
- Stars
- 208
- Forks
- 68
- Avg merge
- 8h 39m
- Merged PRs (30d)
- 39
Description
it.only('works with files with parens', async () => {
fsExtra.outputFileSync(`${rootDir}/manifest`, '');
fsExtra.outputFileSync(`${rootDir}/assets/image-without-parens.png`, '');
fsExtra.outputFileSync(`${rootDir}/assets/Image with (parens).png`, '');
await builder.run({
files: [
'**/*'
],
stagingDir: stagingDir,
rootDir: rootDir,
retainStagingDir: true
});
expect(
fsExtra.pathExistsSync(`${stagingDir}/assets/image-without-parens.png`)
).to.be.true;
expect(
fsExtra.pathExistsSync(`${stagingDir}/assets/Image with (parens).png`)
).to.be.true;
});
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the test containing the shown builder.run case and run it to reproduce the missing file with parentheses. Trace the builder's file-copy path from builder.run, then verify the test passes and both listed assets appear in stagingDir.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- build-system
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100