Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
arnauorriols committed Nov 13, 2023
1 parent 9739a6a commit 9d30edd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/args.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function parseArgs(args: string[]) {
"static",
"version",
"dry-run",
"save-config"
"save-config",
],
string: [
"project",
Expand Down
2 changes: 1 addition & 1 deletion src/subcommands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ async function deploy(opts: DeployOpts): Promise<void> {
case "success": {
const deploymentKind = opts.prod ? "Production" : "Preview";
deploySpinner!.succeed(`${deploymentKind} deployment complete.`);
await configFile.maybeWrite(opts.config, opts, opts.saveConfig)
await configFile.maybeWrite(opts.config, opts, opts.saveConfig);
console.log("\nView at:");
for (const { domain } of event.domainMappings) {
console.log(` - https://${domain}`);
Expand Down

0 comments on commit 9d30edd

Please sign in to comment.