Skip to content

Commit

Permalink
fix: Correct file copying in install.sh
Browse files Browse the repository at this point in the history
Ensure binary is copied to bin directory instead of entire folder
  • Loading branch information
FjodorGit committed Oct 8, 2024
1 parent 2ceb1ad commit fa39dfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ if curl -fsSL --output /tmp/extism-py.tar.gz "$DOWNLOAD_URL"; then
else
mkdir -p ~/.local/share
rm -rf ~/.local/share/extism-py
mv /tmp/extism-py "$TARGET"
mv /tmp/extism-py/bin/extism-py "$TARGET"
mv /tmp/extism-py/share/extism-py ~/.local/share
fi
chmod +x "$TARGET"
Expand Down

0 comments on commit fa39dfd

Please sign in to comment.