vk-ssl-auto-deploy 0.6.0 → 0.6.1

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/routes/cert.js +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vk-ssl-auto-deploy",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "SSL证书自动部署工具 - 提供HTTP API接口,支持证书文件自动上传和部署",
5
5
  "main": "app.js",
6
6
  "bin": {
package/routes/cert.js CHANGED
@@ -601,10 +601,10 @@ function initScheduledTask() {
601
601
  minute: randomMinute % 60
602
602
  };
603
603
 
604
- scheduledExecutionTime = {
605
- hour: 20,
606
- minute: 42
607
- }
604
+ // scheduledExecutionTime = {
605
+ // hour: 20,
606
+ // minute: 42
607
+ // }
608
608
 
609
609
  logger.success(
610
610
  `[定时任务] 已设定执行时间为每天 ${scheduledExecutionTime.hour}:${scheduledExecutionTime.minute.toString().padStart(2, '0')}`