8 lines
216 B
Bash
8 lines
216 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Updating www/code-credits.txt automatically, this will take a moment..."
|
||
|
|
||
|
cd www
|
||
|
yarn licenses generate-disclaimer > code-credits.txt
|
||
|
cd ..
|
||
|
yarn licenses generate-disclaimer >> www/code-credits.txt
|