diff options
author | Adam Tauber <asciimoo@gmail.com> | 2016-01-02 12:21:40 +0100 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2016-01-10 19:23:10 +0100 |
commit | 52323a4b4ed00f63a63181bdf9d0cf3850f1de78 (patch) | |
tree | 8c231fbfdd7f269a6fd3a4c3b0f7ebc2cd68b1c6 | |
parent | 39d2e0427f496e321a38e8a57b01a2c6043d2339 (diff) | |
download | searxng-52323a4b4ed00f63a63181bdf9d0cf3850f1de78.tar.gz searxng-52323a4b4ed00f63a63181bdf9d0cf3850f1de78.zip |
[fix] grunt action name
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | manage.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 5ca043a80..4376e4c2c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ install: script: - ./manage.sh pep8_check - ./manage.sh styles - - ./manage.sh grunt + - ./manage.sh grunt_build - ./manage.sh py_test_coverage - ./manage.sh robot_tests after_success: @@ -58,7 +58,7 @@ styles() { build_style themes/pix-art/less/style.less themes/pix-art/css/style.css } -grunt() { +grunt_build() { grunt --gruntfile "$SEARX_DIR/static/themes/oscar/gruntfile.js" } |