From 477fb4b199e47c93cc24f913f576174c6dff425e Mon Sep 17 00:00:00 2001 From: Adam Cooke Date: Fri, 2 Jun 2017 12:14:02 +0100 Subject: [PATCH] don't include assets when bundling --- bin/postal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/postal b/bin/postal index 039f7c7..9d964be 100755 --- a/bin/postal +++ b/bin/postal @@ -100,7 +100,7 @@ case "$1" in bundle) if [ -n "$2" ]; then - run "bundle install --path=$2 --without=development --jobs=4 --clean" + run "bundle install --path=$2 --jobs=2 --clean --without=development assets" else echo "usage: $0 bundle path/to/vendor/dir" exit 1