1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-09 17:29:04 +08:00

Opt: Hide deploy template to reduce confusion of config/deploy.yaml and deploy/template/deploy.yaml

This commit is contained in:
LmeSzinc 2022-02-11 22:56:08 +08:00
parent e47e613638
commit 8640e92a89
3 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class DeployConfig:
continue
print(f'{k}: {v}')
print(f'Rest of the configs are the same as {DEPLOY_TEMPLATE}')
print(f'Rest of the configs are the same as default')
def read(self):
self.config = poor_yaml_read(DEPLOY_TEMPLATE)

View File

@ -2,7 +2,7 @@ import os
import re
DEPLOY_CONFIG = './config/deploy.yaml'
DEPLOY_TEMPLATE = './deploy/template/deploy.yaml'
DEPLOY_TEMPLATE = './deploy/template'
class cached_property: