Skip to content

Commit

Permalink
fix: rokuDevPassword being treated as number (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
john-george authored Sep 7, 2023
1 parent 003671d commit b8f8ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/app-deployer.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ module.exports = class AppDeployer {
return messages.join(' ');
} catch (error) {
if (error.statusCode === 401) {
throw new KopytkoError('Bad Roku Developer credentials. Check ROKU_DEV_PASSWORD and ROKU_USER in .env file');
throw new KopytkoError('Bad Roku Developer credentials. Check ROKU_DEV_PASSWORD and ROKU_DEV_USER in .env file');
}

if (error.statusCode === 577) {
Expand Down
1 change: 1 addition & 0 deletions src/env/args.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ const parsedArgs = minimist(args, {
*/
forceHttp: process.env.FORCE_HTTP === 'true',
},
string: [ 'rokuDevPassword' ],
});

module.exports = parsedArgs;

0 comments on commit b8f8ede

Please sign in to comment.