Skip to content

Commit 291df10

Browse files
authored
Update gen_pio_frmwk_manifest.py
1 parent 24cbf60 commit 291df10

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/gen_pio_frmwk_manifest.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,7 @@ def main(dst_dir, version_string, commit_hash):
4949

5050
manifest_file_path = os.path.join(dst_dir, "package.json")
5151
with open(manifest_file_path, "w", encoding="utf8") as fp:
52-
MANIFEST_DATA["version"] = f"3.0.0+sha.{commit_hash}"
53-
#MANIFEST_DATA["version"] = f"{converted_version}+sha.{commit_hash}"
52+
MANIFEST_DATA["version"] = f"{converted_version}+sha.{commit_hash}"
5453
json.dump(MANIFEST_DATA, fp, indent=2)
5554

5655
print(

0 commit comments

Comments
 (0)