Skip to content

Commit

Permalink
Remove --no-clipboard option, refs #57
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jul 13, 2022
1 parent c6a094e commit 620de38
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion datasette_publish_vercel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def _publish_vercel(
click.echo(" vercel --prod".format(generate_dir), err=True)
else:
# Run the deploy with Vercel
cmd = ["vercel", "--confirm", "--no-clipboard"]
cmd = ["vercel", "--confirm"]
if debug:
cmd.append("--debug")
if not no_prod:
Expand Down
3 changes: 0 additions & 3 deletions tests/test_publish_vercel.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ def test_publish_vercel(mock_run, mock_which, alias):
[
"vercel",
"--confirm",
"--no-clipboard",
"--prod",
"--env",
"DATASETTE_SECRET=S",
Expand Down Expand Up @@ -109,7 +108,6 @@ def test_publish_vercel_public(mock_run, mock_which):
[
"vercel",
"--confirm",
"--no-clipboard",
"--prod",
"--public",
"--env",
Expand Down Expand Up @@ -151,7 +149,6 @@ def test_publish_vercel_token(mock_run, mock_which):
[
"vercel",
"--confirm",
"--no-clipboard",
"--prod",
"--token",
"xyz",
Expand Down

0 comments on commit 620de38

Please sign in to comment.