Skip to content

Commit d717b04

Browse files
committed
CAP-ADD: local componentize done
1 parent b18a07f commit d717b04

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

invokes/ghcomponentize/ghcomponentizer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import System
1414
import System.IO
1515

16-
1716
SCRIPT_COMPONENT_GUID = System.Guid("c9b2d725-6f87-4b07-af90-bd9aefef68eb")
1817
CPY_VER = "3.-1"
1918
TEMPLATE_VER = re.compile("{{version}}")

tasks.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
PATH_SETUP = "./src/gh/diffCheck/setup.py"
66
PATH_INIT = "./src/gh/diffCheck/diffCheck/__init__.py"
77
PATH_CMAKE = "./CMakeLists.txt"
8+
DIR_IN_GHUSER_COMPONENTS = "./src/gh/components"
9+
DIR_OUT_GHUER_COMPONENTS = "./build/gh"
810

911

1012
@task
@@ -21,7 +23,11 @@ def versionize(c):
2123
@task
2224
def ghcomponentize(c):
2325
path_ghcomponentizer = "./invokes/ghcomponentize/ghcomponentizer.py"
24-
c.run(f"python {path_ghcomponentizer} --ghio ./invokes/ghcomponentize/ghio ./py/components ./build/gh")
26+
c.run(f"python {path_ghcomponentizer} \
27+
--ghio ./invokes/ghcomponentize/ghio \
28+
{DIR_IN_GHUSER_COMPONENTS} \
29+
{DIR_OUT_GHUER_COMPONENTS}")
30+
2531

2632
@task
2733
def flagerize(c, package_name="ACPy"):

0 commit comments

Comments
 (0)