You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ripple.apache.org by da...@apache.org on 2013/05/30 16:19:36 UTC

[10/16] git commit: 'bin/ripple' is executed with node, which does not support "#" comments.

'bin/ripple' is executed with node, which does not support "#" comments.

They should be JS based comments.

This fixes the blocking issue:

    https://issues.apache.org/jira/browse/RIPPLE-17


Project: http://git-wip-us.apache.org/repos/asf/incubator-ripple/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ripple/commit/4dd88e00
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ripple/tree/4dd88e00
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ripple/diff/4dd88e00

Branch: refs/heads/master
Commit: 4dd88e000d5d243c8d140464a8c5e539d1e00d9d
Parents: eacb69d
Author: Brent Lintner <br...@gmail.com>
Authored: Wed May 15 14:09:00 2013 -0400
Committer: Brent Lintner <br...@gmail.com>
Committed: Wed May 15 14:09:00 2013 -0400

----------------------------------------------------------------------
 bin/ripple |   36 ++++++++++++++++++------------------
 1 files changed, 18 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ripple/blob/4dd88e00/bin/ripple
----------------------------------------------------------------------
diff --git a/bin/ripple b/bin/ripple
index 279a8d2..935953a 100755
--- a/bin/ripple
+++ b/bin/ripple
@@ -1,22 +1,22 @@
 #!/usr/bin/env node
 
-# 
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you 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.
-# 
+/* 
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */ 
 
 require('./../lib/cli').interpret(process.argv);