tobiasKaminsky 7 年 前
コミット
1da39384d8
1 ファイル変更2 行追加3 行削除
  1. 2 3
      scripts/lint/lint-up.rb

+ 2 - 3
scripts/lint/lint-up.rb

@@ -56,11 +56,10 @@ end
 
 # run Lint
 puts "running Lint..."
-# system './gradlew clean lint'
+system './gradlew clean lint'
 
 # confirm that Lint ran w/out error
-result = 0
-#result = $?.to_i
+result = $?.to_i
 if result != 0
     puts "FAIL: failed to run ./gradlew clean lint"
     exit 1