[CalendarServer-changes] [6250] CalendarServer/trunk/support/shell.sh

source_changes at macosforge.org source_changes at macosforge.org
Tue Sep 7 10:05:53 PDT 2010


Revision: 6250
          http://trac.macosforge.org/projects/calendarserver/changeset/6250
Author:   glyph at apple.com
Date:     2010-09-07 10:05:52 -0700 (Tue, 07 Sep 2010)
Log Message:
-----------
a helpful script to add any acquired runtime dependencies to your shell

Added Paths:
-----------
    CalendarServer/trunk/support/shell.sh

Added: CalendarServer/trunk/support/shell.sh
===================================================================
--- CalendarServer/trunk/support/shell.sh	                        (rev 0)
+++ CalendarServer/trunk/support/shell.sh	2010-09-07 17:05:52 UTC (rev 6250)
@@ -0,0 +1,30 @@
+#!/bin/bash
+##
+# Copyright (c) 2010 Apple Inc. All rights reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+##
+
+# Use this file as: "source support/shell.sh", in order to produce a shell
+# environment like the one that './run' uses.  This can be useful to interact
+# with dependencies such as PostGreSQL from the command line, if they have been
+# set up by the CalendarServer run script and are not otherwise installed on
+# your system.
+
+wd="$(pwd)";
+. ${wd}/support/build.sh;
+do_setup=false;
+do_get=false;
+do_run=false;
+dependencies 2>&1 > /dev/null;
+
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20100907/3836d430/attachment.html>


More information about the calendarserver-changes mailing list