mirror of
https://github.com/foo-dogsquared/dotfiles.git
synced 2025-01-31 04:57:57 +00:00
13 lines
247 B
Plaintext
13 lines
247 B
Plaintext
|
#!/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"
|