Skip to content
This repository has been archived by the owner on Nov 15, 2017. It is now read-only.

rename sample files once unzipped #132

Merged
merged 4 commits into from
Jun 19, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/commands/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ export default function(program) {
];

function renamePromiseFactory({oldFile, newFile, dir}) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this ES6 lesson 🥇

console.log(` Renaming ${oldFile} to ${newFile}...`);
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Decided I didn't like the message after it said "you're done".

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good call removing this.

return renameFile(join(dir, oldFile), join(dir, newFile));
}

Expand Down