]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - scripts/setup/cli.sh
Translated using Weblate (German)
[github/Chocobozzz/PeerTube.git] / scripts / setup / cli.sh
... / ...
CommitLineData
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
15cp -r "./server/tools/node_modules" "./dist/server/tools"
16cp "./tsconfig.json" "./dist"