diff options
author | Sam Potts <sam@potts.es> | 2018-07-19 10:02:41 +1000 |
---|---|---|
committer | Sam Potts <sam@potts.es> | 2018-07-19 10:02:41 +1000 |
commit | 544ab0086b06a1625c474b35c1f100d4a582a98a (patch) | |
tree | 4ea4b34b48fa4449bd659344167b034ebfd65c10 | |
parent | 13bf80d3726ad57505bbe1982037cb2f340a06c7 (diff) | |
download | plyr-544ab0086b06a1625c474b35c1f100d4a582a98a.tar.lz plyr-544ab0086b06a1625c474b35c1f100d4a582a98a.tar.xz plyr-544ab0086b06a1625c474b35c1f100d4a582a98a.zip |
Logic fix
-rw-r--r-- | gulpfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index 2a8f6927..270e2a71 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -245,8 +245,8 @@ try { // If deployment is setup if ( - Object.keys(credentials).includes('cdn') && - Object.keys(credentials).includes('demo') + Object.keys(credentials).includes('aws') && + Object.keys(credentials).includes('fastly') ) { const { version } = pkg; const { aws, fastly } = credentials; |