Skip to content

Commit

Permalink
Fixed error thrown when installing
Browse files Browse the repository at this point in the history
  • Loading branch information
u12206050 committed Dec 7, 2023
1 parent 9f42417 commit d704de9
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Version 1.5.0 ⚠️
# Version 1.6.0

- Fixed error thrown when installing config folder without --force

## Version 1.5.0 ⚠️

- **Sorts exported object keys**
- Fixes issue where the order of the exported object keys would change between exports, causing unnecessary changes in git.
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "directus-extension-schema-sync",
"description": "Sync schema and data betwreen Directus instances",
"icon": "sync_alt",
"version": "1.5.0",
"version": "1.6.0",
"repository": {
"type": "git",
"url": "https://github.com/bcc-code/directus-schema-sync.git"
Expand Down
2 changes: 1 addition & 1 deletion src/copyConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export async function copyConfig(force: boolean) {
console.log('Config folder already exists, use --force to override');
process.exit(0);
}).catch(() => {
console.log('Config folder not found. Installing...');
console.log('Creating config folder...');
});
}

Expand Down

0 comments on commit d704de9

Please sign in to comment.