diff --git a/scripts/generate_credits.sh b/scripts/generate_credits.sh index 2a26ea7..68f5f69 100755 --- a/scripts/generate_credits.sh +++ b/scripts/generate_credits.sh @@ -1,4 +1,7 @@ #!/bin/bash + +echo "Generating credits files..." + cd www yarn licenses generate-disclaimer > ../license-credits.md cd .. diff --git a/scripts/www_npm_install.sh b/scripts/www_npm_install.sh index 5cc9d9a..a6bd22a 100755 --- a/scripts/www_npm_install.sh +++ b/scripts/www_npm_install.sh @@ -1,5 +1,7 @@ #!/bin/bash -cd www +echo "Installing node modules in www/..." + +cd www npm install cd ..