Skip to content

Commit

Permalink
fix typo on binaries.py
Browse files Browse the repository at this point in the history
  • Loading branch information
yeisonvargasf committed Jan 17, 2024
1 parent 4134ca1 commit 1c8fd20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def dist(self):
artifact_path = os.path.join(
os.getcwd(),
"dist",
f"safety-{self.os}-{'i686' if arch == 32 else 'x86_64'}"
f"safety-{self.os}-{'i386' if arch == 32 else 'x86_64'}"
)
binary_path = os.path.join(os.getcwd(), build_path, "safety")
if self.os == self.WIN:
Expand Down

0 comments on commit 1c8fd20

Please sign in to comment.