mirror of
https://github.com/weaveworks/scope.git
synced 2026-09-06 10:17:19 +00:00
9 lines
213 B
Bash
Executable File
9 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
pwd=$(pwd)
|
|
if [[ $pwd == *"node_modules"* ]]; then
|
|
echo "Installed as Node module. Building package..."
|
|
npm run build-pkg
|
|
else
|
|
echo "Installed as stand-alone UI. Skipped building package"
|
|
fi
|