Browse Source

[fix] grunt action name

Adam Tauber 9 years ago
parent
commit
52323a4b4e
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      .travis.yml
  2. 1
    1
      manage.sh

+ 1
- 1
.travis.yml View File

19
 script:
19
 script:
20
   - ./manage.sh pep8_check
20
   - ./manage.sh pep8_check
21
   - ./manage.sh styles
21
   - ./manage.sh styles
22
-  - ./manage.sh grunt
22
+  - ./manage.sh grunt_build
23
   - ./manage.sh py_test_coverage
23
   - ./manage.sh py_test_coverage
24
   - ./manage.sh robot_tests
24
   - ./manage.sh robot_tests
25
 after_success:
25
 after_success:

+ 1
- 1
manage.sh View File

58
 	build_style themes/pix-art/less/style.less themes/pix-art/css/style.css
58
 	build_style themes/pix-art/less/style.less themes/pix-art/css/style.css
59
 }
59
 }
60
 
60
 
61
-grunt() {
61
+grunt_build() {
62
 	grunt --gruntfile "$SEARX_DIR/static/themes/oscar/gruntfile.js"
62
 	grunt --gruntfile "$SEARX_DIR/static/themes/oscar/gruntfile.js"
63
 }
63
 }
64
 
64