mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-02-07 12:19:02 +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"
|