Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions lib/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -1398,6 +1398,22 @@ $ sudo systemctl restart docker
}
}

if (process.env.HOMEY_HEADLESS !== '1') {
Log('');
Log.info('Before publishing, please review the Homey App Store guidelines:');
Log.info('https://apps.developer.homey.app/app-store/guidelines');
Log('');
const { hasReadGuidelines } = await inquirer.prompt([
{
type: 'confirm',
name: 'hasReadGuidelines',
message: 'I have read the Homey App Store guidelines',
default: false,
},
]);
if (!hasReadGuidelines) return;
Comment thread
RobinBol marked this conversation as resolved.
}

let manifest = App.getManifest({ appPath: this.path });

try {
Expand Down
Loading