Skip to content

Commit

Permalink
Merge pull request #80 from emulsify-ds/feat/new-default-emulsify-dru…
Browse files Browse the repository at this point in the history
…pal-starter-checkout
  • Loading branch information
ModulesUnraveled authored Dec 23, 2021
2 parents 75af182 + 5ba4330 commit b26443b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/handlers/init.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ describe('init', () => {
).toHaveBeenCalledWith(
'https://github.com/emulsify-ds/emulsify-drupal.git',
'/home/uname/Projects/cornflake/themes/cornflake',
{ '--branch': 'cli' }
{ '--branch': 'master' }
);
expect(
rmdirMock
Expand Down
2 changes: 1 addition & 1 deletion src/util/getAvailableStarters.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('getAvailableStarters', () => {
expect(getAvailableStarters()).toMatchInlineSnapshot(`
Array [
Object {
"checkout": "cli",
"checkout": "master",
"platform": "drupal",
"platformMajorVersion": 9,
"repository": "https://github.com/emulsify-ds/emulsify-drupal.git",
Expand Down
2 changes: 1 addition & 1 deletion src/util/getAvailableStarters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function getAvailableStarters(): EmulsifyStarter[] {
platform: 'drupal',
platformMajorVersion: 9,
repository: 'https://github.com/emulsify-ds/emulsify-drupal.git',
checkout: 'cli',
checkout: 'master',
},
];
}

0 comments on commit b26443b

Please sign in to comment.