460bb460bb
The remove_env_flags function was incorrectly returning index 0 when no --env flag was present, causing it to mistakenly skip the first argument (program name) and shift all arguments incorrectly. This required users to specify 'generate' twice to make the CLI work. Fix by checking if --env was actually found (env_idx > 0) before removing any arguments from the list.