Skip to content

Commit

Permalink
build: use secure connection in gulp
Browse files Browse the repository at this point in the history
  • Loading branch information
line-o committed Oct 1, 2023
1 parent 377064f commit 6e1190d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const url = new URL(existJSON.servers.localhost.server)
const connectionOptions = {
host: url.hostname,
port: url.port,
secure: url.protocol === 'https://',
secure: url.protocol === 'https:',
basic_auth: {
user: serverInfo.user,
pass: serverInfo.password
Expand Down

0 comments on commit 6e1190d

Please sign in to comment.