add lazygit

This commit is contained in:
Leons Aleksandrovs
2025-11-10 15:15:44 +02:00
parent b610b8a2dd
commit 95e6708713
2 changed files with 9 additions and 1 deletions

BIN
lazygit Executable file

Binary file not shown.

View File

@@ -154,4 +154,12 @@ SERVER_PATH=\"${SERVER_PROJECT_PATH}/public\" # Public folders location on serve
# Append the rest of the watch core build script
cat "${SCRIPT_DIR}/watch-core-build.sh" >> watch-core-build.sh
echo -e "${GREEN}watch-core-build.sh created successfully${NC}"
echo -e "${GREEN}watch-core-build.sh created successfully${NC}"
# Upload lazygit to server
echo "Uploading lazygit to server..."
cp "${SCRIPT_DIR}/lazygit" .
sshpass -p "${SSH_PASSWORD}" scp "${SCRIPT_DIR}/lazygit" ${SERVER_HOST}:${SERVER_PROJECT_PATH}
echo -e "${GREEN}lazygit uploaded successfully${NC}"