mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 12:37:01 +03:00
10 lines
284 B
Bash
10 lines
284 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
. $IDF_PATH/export.sh
|
|
echo "npm version is $(npm --version)"
|
|
echo "node version is $(node --version)"
|
|
echo "To build the web application, run:"
|
|
echo "pushd components/wifi-manager/webapp/ && npm rebuild node-sass && npm run-script build && popd"
|
|
exec "$@"
|