Skip to content
This repository was archived by the owner on Sep 17, 2020. It is now read-only.

Commit 75d872e

Browse files
committed
build-wr: update build-wr.sh script to run python3 setup.py install, exit on errors
1 parent 49c2037 commit 75d872e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build-wr.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
#!/bin/bash
2-
bash ./webrecorder/webrecorder/webrecorder/standalone/build_player.sh
2+
set -e
3+
4+
pushd webrecorder/webrecorder
5+
python3 setup.py install
6+
bash ./webrecorder/standalone/build_player.sh
7+
popd
8+
39
mv ./webrecorder/webrecorder/webrecorder/standalone/dist/webrecorder_player ./python-binaries/
410
chmod a+x ./python-binaries/webrecorder_player
511

0 commit comments

Comments
 (0)