@cerema/cadriciel 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/cmd/init.js +4 -2
  2. package/package.json +1 -1
package/cmd/init.js CHANGED
@@ -9,7 +9,6 @@ module.exports = function (program) {
9
9
  const recursive = require('recursive-readdir');
10
10
  const fs = require('fs');
11
11
  const log = require('log-beautify');
12
- const util = require('util');
13
12
  const isBinary = require('isbinaryfile').isBinaryFile;
14
13
  const {
15
14
  capitalizeFirstLetter,
@@ -136,7 +135,10 @@ module.exports = function (program) {
136
135
  console.log(
137
136
  '______________________________________________________________'
138
137
  );
139
-
138
+ fs.chmodSync(
139
+ process.cwd() + '/' + o.project + '/docker/config/init-db.sh',
140
+ '755'
141
+ );
140
142
  console.log('\nšŸš€ Happy coding !\n');
141
143
  });
142
144
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cerema/cadriciel",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "npm": ">=8.0.0",