This repository has been archived on 2020-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
tdlib-fork/example/web/build-tdweb.sh
levlam 6b5aa4d030 Add --no-save flag to npm install call.
GitOrigin-RevId: 7eea3c63d30181c922d98dfaa1e51ba85aeac0c3
2019-04-30 14:44:43 +03:00

7 lines
92 B
Bash
Executable File

#!/bin/sh
cd tdweb || exit 1
npm install --no-save || exit 1
npm run build || exit 1
cd ..