Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorBenjamin Neff <benjamin@coding4coffee.ch>2018-02-26 00:53:31 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2018-02-26 00:56:57 +0300
commit74d027a3abb2d72306d7d9e8ff2d150ebe576960 (patch)
treef6f7ee1c944ddf107bc3601a8a8171fe32e0b7f1 /script
parentbeeb073dbe0d95b0dd38c91f8b129fc0039bd3a0 (diff)
Set frozen config as boolean
This is normalized to "true" in the config after running bin/bundle, so rerunning script/configure_bundler resets this back to 1 (which is the same, but we don't need to change this back and forth every time).
Diffstat (limited to 'script')
-rwxr-xr-xscript/configure_bundler2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/configure_bundler b/script/configure_bundler
index 6c28ae7a0..1f30cca70 100755
--- a/script/configure_bundler
+++ b/script/configure_bundler
@@ -24,7 +24,7 @@ end
if rails_env != "development"
config("path vendor/bundle")
- config("frozen 1")
+ config("frozen true")
config("disable_shared_gems true")
end