Skip to content

Commit 5cbeca3

Browse files
authored
Fix binary move command in setup script (#16)
1 parent 0e9a7b5 commit 5cbeca3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ download_binary() {
169169
tar -xzf "${tmpdir}/${asset}" -C "$tmpdir"
170170

171171
mkdir -p "$INSTALL_DIR"
172-
mv "${tmpdir}/codebase-memory-mcp-${platform}" "${INSTALL_DIR}/${BINARY_NAME}"
172+
mv "${tmpdir}/${BINARY_NAME}" "${INSTALL_DIR}/${BINARY_NAME}"
173173
chmod +x "${INSTALL_DIR}/${BINARY_NAME}"
174174

175175
ok "Installed to ${INSTALL_DIR}/${BINARY_NAME}"

0 commit comments

Comments
 (0)