Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
triwav committed Feb 27, 2024
1 parent cdad1ef commit 931692d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions client/src/RokuDevice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class RokuDevice {
return configSection.devices[configSection.deviceIndex ?? 0];
}

public async deploy(options?: rokuDeploy.RokuDeployOptions & {
public async deploy(options?: rokuDeploy.RokuDeployOptions & {
injectTestingFiles?: boolean;
preventMultipleDeployments?: boolean;
deleteBeforeInstall?: boolean; // Remove in v3
Expand All @@ -54,10 +54,10 @@ export class RokuDevice {
// note we don't report the error; as we don't actually care that we could not deploy - it's just useless noise to log it.
}
}
await this.createPackage(options, beforeZipCallback);
const result = await this.publish(options);
this.deployed = true;
return result;
await this.createPackage(options, beforeZipCallback);
const result = await this.publish(options);
this.deployed = true;
return result;
}

public async createPackage(options?: rokuDeploy.RokuDeployOptions & {
Expand Down Expand Up @@ -108,7 +108,7 @@ export class RokuDevice {

public getOutputZipFilePath(options: rokuDeploy.RokuDeployOptions) {
return rokuDeploy.getOutputZipFilePath(options);
}
}

private injectRtaHelpersIntoComponentContents(contents: string) {
// Find the position where we close the interface
Expand Down

0 comments on commit 931692d

Please sign in to comment.