mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
- add build-wombat.sh for building wombat - fix tests (no more karma tests, now in wombat) - update to latest wombat
10 lines
192 B
Bash
Executable File
10 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
CURR_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
cd $CURR_DIR/wombat
|
|
export OUTPUT_DIR=../pywb/static/
|
|
yarn install
|
|
yarn run build-prod
|
|
#cp ./dist/*.js ../pywb/static/
|