diff --git a/.redport/cookiecutter_replay/cookiecutter-vscode-extension.json b/.redport/cookiecutter_replay/cookiecutter-vscode-extension.json index 0c94e3d..63bbe16 100644 --- a/.redport/cookiecutter_replay/cookiecutter-vscode-extension.json +++ b/.redport/cookiecutter_replay/cookiecutter-vscode-extension.json @@ -2,7 +2,7 @@ "cookiecutter": { "extension_display_name": "Packaging", "extension_slug": "packaging", - "project_slug": "vscode-packaging2", + "project_slug": "vscode-packaging", "extension_description": "", "extension_license": "Apache-2.0", "vscode_engine_min_version_tuple": "1.92", diff --git a/.redport/manifest.rpt.json b/.redport/manifest.rpt.json index 01a4cec..53d3e42 100644 --- a/.redport/manifest.rpt.json +++ b/.redport/manifest.rpt.json @@ -2,7 +2,7 @@ "upstream": { "type": "cookiecutter-template", "source": "https://github.com/claui/cookiecutter-vscode-extension.git", - "commit": "783ab0e6758909b9c511edf59d0fec89fcf0093e", + "commit": "c8234db3a55fe3b2e9afca365d58ecc3ed7ae76d", "replay": "cookiecutter_replay/cookiecutter-vscode-extension.json", "patches": [ "patches/disable-install-step.patch" diff --git a/.redport/patches/disable-install-step.patch b/.redport/patches/disable-install-step.patch index deec11e..4db202b 100644 --- a/.redport/patches/disable-install-step.patch +++ b/.redport/patches/disable-install-step.patch @@ -1,10 +1,11 @@ diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py -index cd50f86..50c8cb4 100644 +index b77ddf3..48ee9b3 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py -@@ -1,85 +1,3 @@ +@@ -1,23 +1,5 @@ -import logging --import os + import os +-from pathlib import Path, PurePath import shutil -import subprocess -import sys @@ -24,16 +25,11 @@ index cd50f86..50c8cb4 100644 -) shutil.rmtree('licenses') -- --{%- if cookiecutter.contribute_language == "n" %} --shutil.rmtree('extension/examples') --os.remove('extension/share/language/{{ cookiecutter.first_language_slug }}.tmLanguage.json') --os.remove('extension/share/language/language-configuration.json') --{%- endif %} -- --{%- if cookiecutter.dedicated_library_workspace == "n" %} --shutil.rmtree('./{{ cookiecutter.extension_slug }}') --{%- endif %} + +@@ -30,57 +12,3 @@ os.remove('extension/share/language/language-configuration.json') + {%- if cookiecutter.dedicated_library_workspace == "n" %} + shutil.rmtree('./{{ cookiecutter.extension_slug }}') + {%- endif %} - -git_commands = [ - 'git init -q',