-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b421a8
commit c091010
Showing
13 changed files
with
515 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,6 +127,7 @@ Get public repositories from [GitLab](https://about.gitlab.com), [BitBucket](htt | |
tmplr gitlab:owner/repo | ||
tmplr [email protected]:owner/repo | ||
tmplr https://gitlab.com/owner/repo | ||
tmplr gitlab:owner/group/repo --subgroup | ||
|
||
# 🪣 download from BitBucket | ||
tmplr bitbucket:owner/repo | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { scenario } from './util.mjs' | ||
|
||
|
||
scenario('subgroup', async (run, { $, ls }) => { | ||
await $`rm -f PLACEHOLDER` | ||
|
||
expect((await ls()).length).toBe(0) | ||
|
||
await run('gitlab:skewed-aspect/test-repos/tmplr-test', '--subgroup', '--skip-warnings') | ||
|
||
expect(await ls()).toIncludeAllMembers([ 'README.md', 'nested', 'baz.txt' ]) | ||
expect(await ls('nested')).toIncludeAllMembers([ 'baz.txt', 'qux.txt' ]) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.