13 lines
190 B
Bash
Executable File
13 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Immediately catch all errors
|
|
set -eo pipefail
|
|
|
|
# Uncomment for debugging
|
|
# set -x
|
|
# env
|
|
|
|
git config --global --add safe.directory "*"
|
|
|
|
.devcontainer/update-content-command.sh
|