mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-14 20:40:17 -05:00
[misc] fix listing of services for bin/ scripts
This commit is contained in:
parent
859252696b
commit
a8ca0a896f
3 changed files with 10 additions and 6 deletions
|
@ -2,19 +2,18 @@
|
|||
|
||||
set -e
|
||||
|
||||
grep 'name:' config/services.js | \
|
||||
sed 's/.*name: "\(.*\)",/\1/' | \
|
||||
node ./config/services.js | \
|
||||
while read service
|
||||
do
|
||||
pushd $service
|
||||
echo "Compiling Service $service"
|
||||
case $service in
|
||||
case $service in
|
||||
web)
|
||||
npm run webpack:production
|
||||
;;
|
||||
*)
|
||||
echo "$service doesn't require a compilation"
|
||||
;;
|
||||
esac
|
||||
esac
|
||||
popd
|
||||
done
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
|
||||
set -e
|
||||
|
||||
grep 'name:' config/services.js | \
|
||||
sed 's/.*name: "\(.*\)",/\1/' | \
|
||||
node ./config/services.js | \
|
||||
while read service
|
||||
do
|
||||
pushd $service
|
||||
|
|
|
@ -55,3 +55,9 @@ module.exports = [
|
|||
version: 'master',
|
||||
},
|
||||
]
|
||||
|
||||
if (require.main === module) {
|
||||
for (const service of module.exports) {
|
||||
console.log(service.name)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue