]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - scripts/dev/cli.sh
Fix running again transcoding on a video only file
[github/Chocobozzz/PeerTube.git] / scripts / dev / cli.sh
CommitLineData
0e4338fd 1#!/bin/bash
8d2be0ed
C
2
3set -eu
4
5rm -rf ./dist/server/tools/
6
7(
8 cd ./server/tools
9 yarn install --pure-lockfile
10)
11
12mkdir -p "./dist/server/tools"
13cp -r "./server/tools/node_modules" "./dist/server/tools"
14
f8360396 15cd ./server/tools
31ee48d5 16../../node_modules/.bin/tsc-watch --build --verbose --onSuccess 'sh -c "cd ../../ && npm run resolve-tspaths:server"'