]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/setup/cli.sh
Remove summon install
[github/Chocobozzz/PeerTube.git] / scripts / setup / cli.sh
CommitLineData
7e9d3f25
C
1#!/bin/sh
2
3set -eu
4
5NOCLIENT=1 yarn install --pure-lockfile
6
7rm -rf ./dist/server/tools/
8
9(
10 cd ./server/tools
11 yarn install --pure-lockfile
12)
13
14npm run tsc -- --build ./server/tools/tsconfig.json
15
46b2cec7 16mv "./server/tools/node_modules" "./dist/server/tools"