Skip to content

Commit

Permalink
feat: update default checkout for emulsify-drupal starter
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickocoffeyo committed Dec 23, 2021
1 parent 75af182 commit 5ba4330
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 5ba4330

Please sign in to comment.