Skip to content

Commit

Permalink
Fixed develop script + removed unused fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
AdrianSkierniewski committed Apr 30, 2017
1 parent 8bcf206 commit d4df5cf
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 688 deletions.
9 changes: 6 additions & 3 deletions develop
Expand Up @@ -19,9 +19,10 @@ if [ $# -gt 0 ];then

if [ "$1" == "test" ]; then
shift 1
ARGS="$@"
${COMPOSE} exec --user $(id -u):www-data \
web_server bash -c \
"cd /var/www && vendor/bin/codecept run --env platform,ml_disabled $@"
"cd /var/www && vendor/bin/codecept run --env platform,ml_disabled $ARGS"

elif [ "$1" == "frontend-test" ]; then
shift 1
Expand All @@ -32,15 +33,17 @@ if [ $# -gt 0 ];then

elif [ "$1" == "artisan" ]; then
shift 1
ARGS="$@"
${COMPOSE} exec --user $(id -u):www-data \
web_server bash -c \
"cd /var/www && php artisan $@"
"cd /var/www && php artisan $ARGS"

elif [ "$1" == "composer" ]; then
shift 1
ARGS="$@"
${COMPOSE} exec --user $(id -u):www-data \
web_server bash -c \
"cd /var/www && composer $@"
"cd /var/www && composer $ARGS"

elif [ "$1" == "npm" ]; then
shift 1
Expand Down
Binary file removed public/fonts/FontAwesome.otf
Binary file not shown.
Binary file removed public/fonts/fontawesome-webfont.eot
Binary file not shown.
685 changes: 0 additions & 685 deletions public/fonts/fontawesome-webfont.svg

This file was deleted.

Binary file removed public/fonts/fontawesome-webfont.ttf
Binary file not shown.
Binary file removed public/fonts/fontawesome-webfont.woff
Binary file not shown.
Binary file removed public/fonts/fontawesome-webfont.woff2
Binary file not shown.

0 comments on commit d4df5cf

Please sign in to comment.