Skip to content

Commit 37c50b4

Browse files
committed
fetch_bbb_video.sh: force using bash
The fetch_bbb_video.sh script uses bash specific constructs On Ubuntu the default shell is dash. By adding #!/bin/bash to the script we make sure that bash is used in that case
1 parent 0de73c1 commit 37c50b4

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

fetch_bbb_video.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/bin/bash
12
read -p "WARNING: You're about to download 340MB, are you sure? (yN) " -n 1 -r
23
echo # (optional) move to a new line
34
if [[ ! $REPLY =~ ^[Yy]$ ]]

0 commit comments

Comments
 (0)