diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2021-02-01 12:17:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 16:55:01 +0000 |
commit | 7f983cc5496ca398dfdef90d96fd0e1958371e56 (patch) | |
tree | 902d1aa19129cfb0d8e278134d1d097e10d56ca8 /.devcontainer/setup.sh | |
parent | 26a20ed13f782418b37c16681a7ad7a0c8e943b6 (diff) | |
download | nextcloud-server-7f983cc5496ca398dfdef90d96fd0e1958371e56.tar.gz nextcloud-server-7f983cc5496ca398dfdef90d96fd0e1958371e56.zip |
Add initial support for GitHub codespaces
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to '.devcontainer/setup.sh')
-rwxr-xr-x | .devcontainer/setup.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.devcontainer/setup.sh b/.devcontainer/setup.sh new file mode 100755 index 00000000000..9d2e3d73f98 --- /dev/null +++ b/.devcontainer/setup.sh @@ -0,0 +1,8 @@ +#!/bin/bash +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/../" >/dev/null 2>&1 && pwd )" + +cd $DIR/ +git submodule update --init + +# Codespace config +cp .devcontainer/codespace.config.php config/codespace.config.php |