You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by hx...@apache.org on 2019/11/23 07:08:46 UTC

[incubator-iotdb] branch fix_win_start_slash_error_on_travis created (now f3e554c)

This is an automated email from the ASF dual-hosted git repository.

hxd pushed a change to branch fix_win_start_slash_error_on_travis
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git.


      at f3e554c  fix starting with slash / on WinOS Travis

This branch includes the following new commits:

     new f3e554c  fix starting with slash / on WinOS Travis

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-iotdb] 01/01: fix starting with slash / on WinOS Travis

Posted by hx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

hxd pushed a commit to branch fix_win_start_slash_error_on_travis
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git

commit f3e554cd74f08ce722882b1adc2e6ca802401205
Author: xiangdong huang <sa...@gmail.com>
AuthorDate: Sat Nov 23 15:08:15 2019 +0800

    fix starting with slash / on WinOS Travis
---
 client/src/assembly/client.xml             | 2 +-
 distribution/src/assembly/distribution.xml | 2 +-
 server/src/assembly/server.xml             | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/client/src/assembly/client.xml b/client/src/assembly/client.xml
index f02a281..aa269ce 100644
--- a/client/src/assembly/client.xml
+++ b/client/src/assembly/client.xml
@@ -34,7 +34,7 @@
     <fileSets>
         <fileSet>
             <directory>src/assembly/resources</directory>
-            <outputDirectory>/</outputDirectory>
+            <outputDirectory>${file.separator}</outputDirectory>
         </fileSet>
     </fileSets>
 </assembly>
diff --git a/distribution/src/assembly/distribution.xml b/distribution/src/assembly/distribution.xml
index b0cfd6f..0677c93 100644
--- a/distribution/src/assembly/distribution.xml
+++ b/distribution/src/assembly/distribution.xml
@@ -31,7 +31,7 @@
             <includes>
                 <include>*:zip:*</include>
             </includes>
-            <outputDirectory>/</outputDirectory>
+            <outputDirectory>${file.separator}</outputDirectory>
             <unpack>true</unpack>
         </dependencySet>
     </dependencySets>
diff --git a/server/src/assembly/server.xml b/server/src/assembly/server.xml
index 9b2df21..4db5225 100644
--- a/server/src/assembly/server.xml
+++ b/server/src/assembly/server.xml
@@ -34,7 +34,7 @@
     <fileSets>
         <fileSet>
             <directory>src/assembly/resources</directory>
-            <outputDirectory>/</outputDirectory>
+            <outputDirectory>${file.separator}</outputDirectory>
         </fileSet>
     </fileSets>
 </assembly>