backlog.md 0.1.17 → 0.1.19

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/cli.js +2 -2
  2. package/package.json +1 -1
package/cli.js CHANGED
@@ -77,7 +77,7 @@ async function downloadBinary(binaryName, binaryPath) {
77
77
  file.on("finish", () => {
78
78
  file.close();
79
79
  // Make executable on Unix
80
- if (process.platform !== 'win32') {
80
+ if (process.platform !== "win32") {
81
81
  chmodSync(binaryPath, 0o755);
82
82
  }
83
83
  console.log("Download complete!");
@@ -94,7 +94,7 @@ async function downloadBinary(binaryName, binaryPath) {
94
94
  file.on("finish", () => {
95
95
  file.close();
96
96
  // Make executable on Unix
97
- if (process.platform !== 'win32') {
97
+ if (process.platform !== "win32") {
98
98
  chmodSync(binaryPath, 0o755);
99
99
  }
100
100
  console.log("Download complete!");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backlog.md",
3
- "version": "0.1.17",
3
+ "version": "0.1.19",
4
4
  "bin": {
5
5
  "backlog": "cli.js"
6
6
  },