From f9c2bc1c4972477ddae74de1aaff8ca0e1639b8a Mon Sep 17 00:00:00 2001 From: Willi Goesgens Date: Fri, 12 Jun 2015 17:53:47 +0200 Subject: [PATCH] If we run in cygwin, we have to append .exe --- scripts/run | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/run b/scripts/run index e35dfb11c9..bf9172df81 100755 --- a/scripts/run +++ b/scripts/run @@ -13,7 +13,9 @@ fi if test -n "$ORIGINAL_PATH"; then # running in cygwin... PS='\' + export EXT=".exe" else + export EXT="" PS='/' fi; @@ -38,7 +40,7 @@ echo Database has its data in data-$PID echo Logfile is in log-$PID $VG bin/arangod \ --configuration none \ - --cluster.agent-path bin${PS}etcd-arango \ + --cluster.agent-path bin${PS}etcd-arango${EXT} \ --cluster.arangod-path bin${PS}arangod \ --cluster.coordinator-config etc${PS}relative${PS}arangod-coordinator.conf \ --cluster.dbserver-config etc${PS}relative${PS}arangod-dbserver.conf \