Skip to content

Commit d291adc

Browse files
authored
Merge pull request #4836 from NativeScript/fatme/fix-cloud-build-sidekick
fix: don't build every time the application from sidekick when using cloud build
2 parents b5f88a4 + ea61a76 commit d291adc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/project-changes-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class ProjectChangesService implements IProjectChangesService {
9191
await platformData.platformProjectService.checkForChanges(this._changesInfo, prepareData, projectData);
9292
}
9393

94-
if (prepareData.release !== this._prepareInfo.release) {
94+
if (!!prepareData.release !== !!this._prepareInfo.release) {
9595
this.$logger.trace(`Setting all setting to true. Current options are: `, prepareData, " old prepare info is: ", this._prepareInfo);
9696
this._changesInfo.appResourcesChanged = true;
9797
this._changesInfo.configChanged = true;

0 commit comments

Comments
 (0)