Run prettier:fix

Signed-off-by: Kamil Zainal <gh@akza.dev>
This commit is contained in:
Kamil Zainal
2023-10-23 15:34:38 +01:00
parent 20005cf26d
commit 31fd1146af
4 changed files with 6 additions and 6 deletions
@@ -114,7 +114,7 @@ export default async function generate(opts: OptionValues) {
etag: opts.etag,
logStream: getLogStream(logger),
siteOptions: { name: opts.siteName },
runAsDefaultUser: opts.runAsDefaultUser
runAsDefaultUser: opts.runAsDefaultUser,
});
if (configIsTemporary) {
+1 -1
View File
@@ -78,7 +78,7 @@ export function registerCommands(program: Command) {
.option(
'--runAsDefaultUser',
'Bypass setting the container user as the same user and group id as host for Linux and MacOS',
false
false,
)
.alias('build')
.action(lazy(() => import('./generate/generate').then(m => m.default)));