mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -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,8 +2,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
grep 'name:' config/services.js | \
|
node ./config/services.js | \
|
||||||
sed 's/.*name: "\(.*\)",/\1/' | \
|
|
||||||
while read service
|
while read service
|
||||||
do
|
do
|
||||||
pushd $service
|
pushd $service
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
grep 'name:' config/services.js | \
|
node ./config/services.js | \
|
||||||
sed 's/.*name: "\(.*\)",/\1/' | \
|
|
||||||
while read service
|
while read service
|
||||||
do
|
do
|
||||||
pushd $service
|
pushd $service
|
||||||
|
|
|
@ -55,3 +55,9 @@ module.exports = [
|
||||||
version: 'master',
|
version: 'master',
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
|
if (require.main === module) {
|
||||||
|
for (const service of module.exports) {
|
||||||
|
console.log(service.name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue