File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8484 env :
8585 DEBIAN_FRONTEND : noninteractive
8686 run : |
87- echo "Installing NPM dependencies..."
88- npm install --force
89- npm install -g grunt-cli
90- cd bootstrap
91- npm install
92- echo "Generating bootstrap files..."
93- grunt dist
94- cp -r dist/. ../ietf/static/ietf/bootstrap/
95- cd ..
87+ echo "Running build script..."
88+ chmod +x ./dev/deploy/build.sh
89+ sh ./dev/deploy/build.sh
9690 echo "Setting version $PKG_VERSION_STRICT..."
9791 sed -i -r -e "s/^__version__ += '.*'$/__version__ = '$PKG_VERSION_STRICT'/" ietf/__init__.py
9892 echo "Build release tarball..."
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ echo " Installing NPM dependencies..."
4+ npm install
5+
6+ echo " Building bootstrap 3 assets..."
7+ cd bootstrap
8+ npm install -g grunt-cli
9+ npm install
10+ grunt dist
11+ cp -r dist/. ../ietf/static/ietf/bootstrap/
12+ cd ..
You can’t perform that action at this time.
0 commit comments