Skip to content

Commit 37c9dd9

Browse files
committed
hatch_build.py updated
1 parent 2bf6a16 commit 37c9dd9

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

hatch_build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def initialize(self, version, build_data):
5555
# Get needed params
5656
current_os = platform.system().lower()
5757
arch = platform.machine().lower()
58-
print(f"OS: {current_os}, arch: {arch}")
58+
print(f"OS: {current_os}, arch: {arch}, PWD={os.curdir}")
5959
# Build lua for linux
6060
lua_version = "5.4.8"
6161
lua_src = f"lua-{lua_version}.tar.gz"
@@ -64,7 +64,6 @@ def initialize(self, version, build_data):
6464
build_dir = "build"
6565
if current_os == "linux":
6666
print("Linux detected - building Lua from source...")
67-
print(f"PWD={os.curdir}")
6867
# Clean/create build directory
6968
if os.path.exists(build_dir):
7069
shutil.rmtree(build_dir)

0 commit comments

Comments
 (0)