aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2018-05-26 13:55:22 +1000
committerGitHub <noreply@github.com>2018-05-26 13:55:22 +1000
commitf0be913dc384c5a229af70b69711ab246226c1a3 (patch)
tree1919f9f0ead11712f3a94eeed2e5b6da0130c8f9 /gulpfile.js
parentc41bb657ac490d032f2992845d21a457a7faedf1 (diff)
parentcd51788b980a7bc7b5caaf2d595d2077be4138f5 (diff)
downloadplyr-f0be913dc384c5a229af70b69711ab246226c1a3.tar.lz
plyr-f0be913dc384c5a229af70b69711ab246226c1a3.tar.xz
plyr-f0be913dc384c5a229af70b69711ab246226c1a3.zip
Merge pull request #975 from sampotts/develop
v3.3.8
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 262fa2d2..9a6da95f 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -241,11 +241,11 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
const branch = {
current: gitbranch.sync(),
master: 'master',
- beta: 'beta',
+ develop: 'develop',
};
const allowed = [
branch.master,
- branch.beta,
+ branch.develop,
];
const maxAge = 31536000; // 1 year
@@ -257,7 +257,7 @@ if (Object.keys(aws).includes('cdn') && Object.keys(aws).includes('demo')) {
},
},
demo: {
- uploadPath: branch.current === branch.beta ? 'beta/' : null,
+ uploadPath: branch.current === branch.develop ? 'beta/' : null,
headers: {
'Cache-Control': 'no-cache, no-store, must-revalidate, max-age=0',
Vary: 'Accept-Encoding',