async function runCmdSequentially()

in index.js [196:205]


async function runCmdSequentially (commands, options) {
    try {
        for (const command of commands) {
            print.process(command);
            await runCmd(command, options);
        }
    } catch (error) {
        print.error('Failed to create mobile spec project.');
    }
}