mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
73e0fdddd0
The `.sh` file extension is now used for all Bash scripts. This ensures the files are recognized as Bash scripts by the ShellCheck CI job, and by editors/IDEs for improved syntax highlighting.
17 lines
260 B
Bash
Executable File
17 lines
260 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
BUILD_DEST="./build-artifacts/build-viz/"
|
|
|
|
# prepare artifacts dir
|
|
mkdir -p "${BUILD_DEST}"
|
|
|
|
# generate lavamoat debug config
|
|
yarn lavamoat:debug
|
|
|
|
# generate viz
|
|
npx lavamoat-viz --dest "${BUILD_DEST}" |