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

Commit

Permalink
build-wr: update build-wr.sh script to run python3 setup.py install, …
Browse files Browse the repository at this point in the history
…exit on errors
  • Loading branch information
ikreymer committed Sep 21, 2018
1 parent 49c2037 commit 75d872e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion build-wr.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/bin/bash
bash ./webrecorder/webrecorder/webrecorder/standalone/build_player.sh
set -e

pushd webrecorder/webrecorder
python3 setup.py install
bash ./webrecorder/standalone/build_player.sh
popd

mv ./webrecorder/webrecorder/webrecorder/standalone/dist/webrecorder_player ./python-binaries/
chmod a+x ./python-binaries/webrecorder_player

0 comments on commit 75d872e

Please sign in to comment.