Skip to content

Commit f91464e

Browse files
committed
Fix install script
1 parent a616032 commit f91464e

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

openvidu-components-angular/install.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ TUTORIALS=(
77
'openvidu-complete-app/frontend'
88
'openvidu-custom-activities-panel'
99
'openvidu-custom-chat-panel'
10+
'openvidu-custom-lang'
1011
'openvidu-custom-layout'
1112
'openvidu-custom-panels'
1213
'openvidu-custom-participant-panel-item'
@@ -17,16 +18,18 @@ TUTORIALS=(
1718
'openvidu-custom-ui'
1819
'openvidu-toggle-hand'
1920
'openvidu-toolbar-buttons'
20-
'openvidu-toolbar-panel-buttons',
21+
'openvidu-toolbar-panel-buttons'
2122
)
2223

2324
for tutorial in "${TUTORIALS[@]}"
2425
do
2526
echo "Installing modules in $tutorial, please wait ..."
2627

27-
cd $tutorial
28+
pushd "$tutorial" || exit 1
29+
2830
# rm package-lock.json
31+
npm version 3.2.0
2932
npm i openvidu-components-angular@latest
30-
cd ..
33+
popd || exit 1
3134

3235
done

0 commit comments

Comments
 (0)