Skip to content

Commit

Permalink
Call correct function in setup.py
Browse files Browse the repository at this point in the history
Signed-off-by: Jono Yang <[email protected]>
  • Loading branch information
JonoYang committed Nov 5, 2024
1 parent 218f7eb commit b9e703c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ GOOS=linux
if [ $(uname -m) == 'aarch64' ]; then
GOARCH="arm64"
else
GOARCH="amd64"
GOARCH="amd64"
fi

cd lib-src/
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def run(self):

class DevelopNative(setuptools_develop):
def run(self):
self.execute(run_rpm_build, (), msg="Building develop native code")
self.execute(run_native_build, (), msg="Building develop native code")
setuptools_develop.run(self)


Expand Down

0 comments on commit b9e703c

Please sign in to comment.