remove quotes

pull/26/head
Webber 2020-01-25 17:02:51 +01:00
parent f96e213337
commit 8a18dbf947
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -3,7 +3,7 @@ import Input from './input';
class Unity { class Unity {
static get libraryFolder() { static get libraryFolder() {
const { projectPath } = Input.getFromUser(); const { projectPath } = Input.getFromUser();
return `${projectPath}/'Library'`; return `${projectPath}/Library`;
} }
} }