Skip to content

Commit

Permalink
Skip scaffold.css on Windows. (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
peterp authored Mar 23, 2020
1 parent 25d1e9c commit 62d291e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/generate/commands/scaffold.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const assetFiles = (name) => {

// skip assets that already exist on disk, never worry about overwriting
if (
!SKIPPABLE_ASSETS.includes(outputPath.split('/').pop()) ||
!SKIPPABLE_ASSETS.includes(path.basename(outputPath)) ||
!fs.existsSync(outputPath)
) {
const template = generateTemplate(
Expand Down

0 comments on commit 62d291e

Please sign in to comment.