Files
code-server/deploy-k8s/extras/new-workspace.sh
2021-11-16 23:19:38 -06:00

10 lines
214 B
Bash
Executable File

#!/bin/sh
# This creates a new workspace file and opens it in
# VS Code, if you have it installed
cp workspaces/ben.yaml workspaces/new.yaml
if command -v code &> /dev/null; then
code workspaces/new.yaml
fi