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.
- package/package.json +1 -1
- package/src/redate.js +2 -2
package/package.json
CHANGED
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.
|
|
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) {
|