Skip to content

Commit

Permalink
Release 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jellesiderius committed May 23, 2022
1 parent cb34b3d commit 87a0ca3
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion dist/controllers/mainController.js

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

2 changes: 1 addition & 1 deletion dist/controllers/mainController.js.map

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

2 changes: 1 addition & 1 deletion dist/tasks/importTask.js

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

2 changes: 1 addition & 1 deletion dist/tasks/importTask.js.map

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

2 changes: 1 addition & 1 deletion dist/tasks/shopwareConfigureTask.js

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

2 changes: 1 addition & 1 deletion dist/tasks/shopwareConfigureTask.js.map

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

2 changes: 1 addition & 1 deletion 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
@@ -1,6 +1,6 @@
{
"name": "sw-db-sync",
"version": "0.1.6",
"version": "0.1.7",
"description": "Database synchronizer for Shopware 6",
"author": {
"name": "Jelle Siderius"
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/mainController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class MainController {
'databaseFileName': '',
'databaseFullPath': '',
'strip': '',
'syncImages': false,
'syncImages': 'no',
'rsyncInstalled': false,
'import': 'no',
'currentFolderIsShopware': false,
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/importTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class ImportTask {
}
);

if (config.settings.syncImages) {
if (config.settings.syncImages == 'yes') {
this.importTasks.push(
{
title: 'Synchronizing public/media & public/thumbnail',
Expand Down
2 changes: 1 addition & 1 deletion src/tasks/shopwareConfigureTask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ShopwareConfigureTask {
}
);

if (!config.settings.syncImages) {
if (config.settings.syncImages == 'no') {
this.configureTasks.push(
{
title: "Emptying media tables",
Expand Down

0 comments on commit 87a0ca3

Please sign in to comment.