2023-01-04 22:29:25 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -xeuf -o pipefail
|
|
|
|
|
|
|
|
# exit this file if we are not in Codespaces
|
|
|
|
if [ -z "${CODESPACES}" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2023-01-06 19:37:03 +00:00
|
|
|
echo "printf \"\n🚀 Welcome to Cal.com! Try typing 'yarn dx' to get a quick dev environment.\n\"" >> ~/.bashrc
|