cal/deploy/codespaces/install.sh
2023-01-06 12:37:03 -07:00

9 lines
237 B
Bash
Executable File

#!/bin/bash
set -xeuf -o pipefail
# exit this file if we are not in Codespaces
if [ -z "${CODESPACES}" ]; then
exit 0
fi
echo "printf \"\n🚀 Welcome to Cal.com! Try typing 'yarn dx' to get a quick dev environment.\n\"" >> ~/.bashrc