From 33c261a1f33b02b46605b48260987e5d09920227 Mon Sep 17 00:00:00 2001 From: Kai Vandivier <49666798+KaiVandivier@users.noreply.github.com> Date: Tue, 10 Dec 2024 15:02:27 +0100 Subject: [PATCH] fix(init): update bootstrap script branch (#896) * fix(init): point bootstrap script to master * chore: yarn (ugh why are release commits messing with this?) --- cli/src/commands/init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/commands/init.js b/cli/src/commands/init.js index f3ec81bf..64aa34ca 100644 --- a/cli/src/commands/init.js +++ b/cli/src/commands/init.js @@ -160,7 +160,7 @@ const handler = async ({ force, name, cwd, lib, typeScript }) => { reporter.info('Installing @dhis2/cli-app-scripts...') await exec({ cmd: 'yarn', - args: ['add', '--dev', '@dhis2/cli-app-scripts@alpha'], + args: ['add', '--dev', '@dhis2/cli-app-scripts'], cwd: paths.base, }) }