mirror of
https://github.com/fluencelabs/avm-runner-background
synced 2025-03-14 21:10:50 +00:00
15 lines
225 B
Bash
Executable File
15 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# set current working directory to script directory to run script from everywhere
|
|
cd "$(dirname "$0")"
|
|
|
|
(
|
|
cd test-project
|
|
npm i
|
|
npm run install:local
|
|
npm run copy-public
|
|
npm run build
|
|
)
|