mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-30 22:57:54 +00:00
13 lines
247 B
Bash
Executable File
13 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
TEMPLATES_DIR="$HOME/templates"
|
|
|
|
while [[ ! -a "$TEMPLATES_DIR/$TEMPLATE/cookiecutter.json" ]]
|
|
do
|
|
TEMPLATE="$TEMPLATE/$(ls "$TEMPLATES_DIR/$TEMPLATE" | fzf)"
|
|
done
|
|
|
|
cookiecutter "$TEMPLATES_DIR/$TEMPLATE"
|