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:
authorspixi <marius.spix@web.de>2017-01-08 19:43:06 +0300
committerBenjamin Neff <benjamin@coding4coffee.ch>2017-01-16 01:27:27 +0300
commitfa0bd14dfbbab7658e2fdbd2ad14b4439967ebd0 (patch)
treea0ca262445188eddad4d744fd4e6496759e6f1e0 /script
parent5e58068a72997031ed18da8aa2622152f97244dc (diff)
Fix script/server when bin/ is not in PATH
This fixes an issue, when the bin/ directory of diaspora is not in the PATH variable closes #7281
Diffstat (limited to 'script')
-rwxr-xr-xscript/server2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/server b/script/server
index d8d35aad8..715697d44 100755
--- a/script/server
+++ b/script/server
@@ -87,7 +87,7 @@ if [ $? -eq 0 ]; then
fi
# Check if bundle is complete
-if ! bundle check > /dev/null
+if ! bin/bundle check > /dev/null
then
fatal "Your bundle is not up to date, run the command \"bundle install\""
fi