private static getContainerAppName()

in azurecontainerapps.ts [240:247]


    private static getContainerAppName(): string {
        let containerAppName: string = this.toolHelper.getInput('containerAppName', false);
        if (this.util.isNullOrEmpty(containerAppName)) {
            return this.toolHelper.getDefaultContainerAppName(containerAppName);
        }

        return containerAppName;
    }