6 lines
94 B
Bash
6 lines
94 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
if [ "$1" = "remove" ]; then
|
||
|
rm -fr /var/bigbluebutton/learning-dashboard
|
||
|
fi
|