Skip to content

Commit

Permalink
Node.js SDK tasklet: support xcode_sidecar
Browse files Browse the repository at this point in the history
commit_hash:2c55f79d794d1397298137030241375d3bff6f9d
  • Loading branch information
vitalii-perov committed Feb 6, 2025
1 parent 1ce9417 commit 0f71188
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ def extract_node_modules(build_root, node_modules_path, bundle_path):
if os.path.exists(bundled_nm_path):
os.rename(bundled_nm_path, nm_path)
except FileNotFoundError as e:
logging.error(f"exists={os.path.exists(bundled_nm_path)} : {bundled_nm_path}")
logging.error(f"exists={os.path.exists(nm_path)} : {nm_path}")
parent_directory = os.path.dirname(nm_path)
logging.error(f"bundled_nm exists={os.path.exists(bundled_nm_path)} : {bundled_nm_path}")
logging.error(f"nm_path/.. exists={os.path.exists(parent_directory)} : {parent_directory}")
raise e

return True

0 comments on commit 0f71188

Please sign in to comment.