Skip to content

Commit be293b3

Browse files
committed
DO NOT MERGE - debugging
1 parent f54fa06 commit be293b3

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

Diff for: .travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ cache:
66
- node_modules
77
- bower_components
88
before_script:
9+
- echo "Checking style.css perms before build:"
10+
- ls -la dist.java/java/style.css
911
- make build
1012
script:
1113
- hack/test-headless.sh test

Diff for: hack/verify-dist.sh

+6
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,14 @@ set -e
88
repo_root="$( dirname "${BASH_SOURCE}" )/.."
99
export PATH="${PATH}:${repo_root}/node_modules/grunt-cli/bin"
1010

11+
echo "Checking style.css perms before build:"
12+
ls -la dist.java/java/style.css
13+
1114
grunt build
1215

16+
echo "Checking style.css perms after build:"
17+
ls -la dist.java/java/style.css
18+
1319
echo "Verifying that checked in built files under dist match the source..."
1420
if [[ $(git status -s -u dist*) ]]; then
1521
git status -vv -u dist*

0 commit comments

Comments
 (0)