flashmemory 0.1.2__tar.gz → 0.1.4__tar.gz
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.
- {flashmemory-0.1.2 → flashmemory-0.1.4}/PKG-INFO +1 -1
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory/__init__.py +1 -1
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory/cli.py +4 -2
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory.egg-info/PKG-INFO +1 -1
- {flashmemory-0.1.2 → flashmemory-0.1.4}/pyproject.toml +1 -1
- {flashmemory-0.1.2 → flashmemory-0.1.4}/README.md +0 -0
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory.egg-info/SOURCES.txt +0 -0
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory.egg-info/dependency_links.txt +0 -0
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory.egg-info/entry_points.txt +0 -0
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory.egg-info/requires.txt +0 -0
- {flashmemory-0.1.2 → flashmemory-0.1.4}/flashmemory.egg-info/top_level.txt +0 -0
- {flashmemory-0.1.2 → flashmemory-0.1.4}/setup.cfg +0 -0
|
@@ -164,7 +164,7 @@ def ensure_binary(binary_name):
|
|
|
164
164
|
|
|
165
165
|
# 设置执行权限 (非 Windows)
|
|
166
166
|
if os_name != "windows":
|
|
167
|
-
for name in ["fm", "fm_http"]:
|
|
167
|
+
for name in ["fm", "fm_core", "fm_http"]:
|
|
168
168
|
p = os.path.join(INSTALL_DIR, name)
|
|
169
169
|
if os.path.isfile(p):
|
|
170
170
|
st = os.stat(p)
|
|
@@ -200,7 +200,9 @@ def main_fm():
|
|
|
200
200
|
|
|
201
201
|
|
|
202
202
|
def main_fm_http():
|
|
203
|
-
"""fm_http 命令入口"""
|
|
203
|
+
"""fm_http 命令入口 (已弃用,请使用 fm serve)"""
|
|
204
|
+
print("⚠️ fm_http 已弃用,请使用: fm serve")
|
|
205
|
+
print(" Deprecated: please use 'fm serve' instead.\n")
|
|
204
206
|
run_binary("fm_http")
|
|
205
207
|
|
|
206
208
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|