mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
11 lines
369 B
Bash
Executable File
11 lines
369 B
Bash
Executable File
#!/bin/bash
|
|
# Bash strict mode: http://redsymbol.net/articles/unofficial-bash-strict-mode/
|
|
set -euo pipefail
|
|
|
|
# This file is automatically run by Baserow when the plugin is uninstalled.
|
|
|
|
# Baserow will automatically `yarn remove` the plugin after this script for you so
|
|
# no need to do that in here.
|
|
|
|
# Instead you should undo any changes you've made to the container.
|