]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/setup/cli.sh
prevent multiple post-process triggering of upload-resumable (#4175)
[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
1a12f66d 15cp -r "./server/tools/node_modules" "./dist/server/tools"
a0e6d267 16cp "./tsconfig.json" "./dist"