File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ COPY LICENSE README.md THIRD_PARTY_NOTICE.md /
13
13
14
14
COPY "entrypoint.sh" "/entrypoint.sh"
15
15
ENTRYPOINT ["/entrypoint.sh" ]
16
- CMD ["--help " ]
16
+ CMD ["default " ]
Original file line number Diff line number Diff line change @@ -12,12 +12,14 @@ echo "Installing NPM dependencies"
12
12
npm install
13
13
14
14
# First try Gulp, then try Grunt
15
- if [ -f " gulpfile.js" ]
15
+ # Gulpfile.js can be a file or a directory:
16
+ if [ -e " gulpfile.js" ]
16
17
then
17
18
npm install -g gulp-cli
18
19
echo " Running Gulp with args"
19
20
sh -c " gulp $* "
20
- elif [ -f " Gruntfile.js" ]
21
+ # Gruntfile can be js or coffeescript file
22
+ elif [ -f " Gruntfile.js" -o -f " Gruntfile.coffee" ]
21
23
then
22
24
npm install -g grunt-cli
23
25
echo " Running Grunt with args"
You can’t perform that action at this time.
0 commit comments