We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ae6ae6 commit 4e243b7Copy full SHA for 4e243b7
templates/layout.erb
@@ -98,7 +98,11 @@ end
98
# >-----------------------------[ Run 'Bundle Install' ]-------------------------------<
99
100
say_wizard "Installing gems. This will take a while."
101
-run 'bundle install --without production'
+if prefs.has_key? :bundle_path
102
+ run "bundle install --without production #{prefs[:bundle_path]}"
103
+else
104
+ run 'bundle install --without production'
105
+end
106
107
# >-----------------------------[ Run 'After Bundler' Callbacks ]-------------------------------<
108
0 commit comments