Skip to content

Commit 66337ed

Browse files
fix: remove unnecessary validation
1 parent 2cf31fb commit 66337ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export async function main(
9898
const inputs: UploaderInputs = { args, environment: envs }
9999

100100
let uploadHost: string
101-
if (args.url && validateHelpers.validateURL(args.url)) {
101+
if (args.url) {
102102
uploadHost = args.url
103103
} else {
104104
uploadHost = 'https://codecov.io'

0 commit comments

Comments
 (0)