Skip to content

Commit

Permalink
Update install marker path
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrw committed May 13, 2024
1 parent b3524fc commit 83b6c84
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions localstack/packages/cdklocal.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import os
from functools import lru_cache
from typing import List

Expand Down Expand Up @@ -28,5 +29,14 @@ def __init__(self, version: str):
version=version,
)

def _get_install_marker_path(self, install_dir: str) -> str:
return os.path.join(
install_dir,
"node_modules",
self.package_name,
"bin",
"cdklocal",
)


cdklocal_package = CdkLocalPackage()

0 comments on commit 83b6c84

Please sign in to comment.