Skip to content

Commit

Permalink
Merge branch 'master' into feature/windows-path-compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrdam authored Nov 22, 2023
2 parents 2e824bd + f7ee5ec commit f1412b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ftp-deploy",
"version": "2.4.4",
"version": "2.4.5",
"author": "Simon Hampton",
"description": "Ftp a folder from your local disk to an ftp destination",
"main": "src/ftp-deploy",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { minimatch } = require("minimatch");
// P H A S E 0

function checkIncludes(config) {
config.excludes = config.excludes || [];
config.exclude = config.exclude || [];
if (!config.include || !config.include.length) {
return Promise.reject({
code: "NoIncludes",
Expand Down

0 comments on commit f1412b2

Please sign in to comment.