Skip to content

Commit b977db1

Browse files
authored
fix: Correct file copying in install.sh (#14)
Ensure binary is copied to bin directory instead of entire folder
1 parent 2ceb1ad commit b977db1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ if curl -fsSL --output /tmp/extism-py.tar.gz "$DOWNLOAD_URL"; then
129129
else
130130
mkdir -p ~/.local/share
131131
rm -rf ~/.local/share/extism-py
132-
mv /tmp/extism-py "$TARGET"
132+
mv /tmp/extism-py/bin/extism-py "$TARGET"
133133
mv /tmp/extism-py/share/extism-py ~/.local/share
134134
fi
135135
chmod +x "$TARGET"

0 commit comments

Comments
 (0)