Init-Files/install.sh
2023-11-10 15:52:57 +00:00

14 lines
308 B
Bash
Executable file

#!/bin/bash
#
# This is my dotfiles setup script. It is invoked by coder.com instances.
# We have this shared part of the setup, in setup.py, so let's run that first.
set -ex
MY_PATH=$(dirname "$0")
cd $MY_PATH
# Run the basic setup.
python3 "./setup.py"
# Run the coder setup.
python3 "./coder-setup.py"