Skip to content

Commit 46aa635

Browse files
committed
fix: small typos in destination folder not existing
1 parent ec22313 commit 46aa635

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ where
9898
- [`go`](./src/go): For a default Go toolchain.
9999

100100
- `[args...]` are optional arguments passed to `copier`. If you want to
101-
overwrite by default use `-w`.
101+
overwrite by default use `-w` and not answer `Y` all the time.
102102

103103
## Containerized
104104

justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ create-impl *args:
2929

3030
[[ "$template" =~ generic|rust|go|python ]] ||
3131
ci::die "No such template '$template' to template"
32-
[ -d "$destination" ] || ci::die "Destination '$destination' does not exist."
32+
33+
mkdir -p "$destination"
3334
cd "{{root_dir}}"
3435

3536
ci::print_info "Rendering 'generic' template ... "

0 commit comments

Comments
 (0)