redate-cli 0.2.2 → 0.2.3

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/package.json +1 -1
  2. package/src/redate.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redate-cli",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "A CLI tool for renaming images based on EXIF data.",
5
5
  "type": "module",
6
6
  "main": "src/redate.js",
package/src/redate.js CHANGED
@@ -14,7 +14,7 @@ const program = new Command();
14
14
  program
15
15
  .name("redate")
16
16
  .description("Rename images based on EXIF dates")
17
- .version("0.2.2");
17
+ .version("0.2.3");
18
18
 
19
19
  program
20
20
  .command("process <paths...>")
@@ -99,7 +99,7 @@ program
99
99
  }
100
100
 
101
101
  console.log("Updating...");
102
- execSync("npm install -g redate", { stdio: "inherit" });
102
+ execSync("npm install -g redate-cli", { stdio: "inherit" });
103
103
 
104
104
  console.log("Update completed.");
105
105
  } catch (err) {