mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-02 22:13:07 +00:00
9 lines
193 B
Bash
Executable File
9 lines
193 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Install pnpm
|
|
if ! command -v pnpm &> /dev/null; then
|
|
echo "pnpm is not installed, installing it now..."
|
|
curl -L https://unpkg.com/@pnpm/self-installer | node
|
|
fi
|
|
|