mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 14:05:36 +01:00
14 lines
317 B
Bash
14 lines
317 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
yarn
|
||
|
|
||
|
[ -d "dist" ] && rm -rf dist
|
||
|
|
||
|
yarn run build
|
||
|
|
||
|
echo "[+] Installing non-bundle-able packages ..."
|
||
|
DISCORD_JS="$(grep discord.js package.json | sed 's|,||')"
|
||
|
cd "dist"
|
||
|
echo "{\"name\": \"citra-discord-bot\",\"license\": \"GPL-2.0+\",\"dependencies\": {${DISCORD_JS}}}" > package.json
|
||
|
yarn install
|