You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@htrace.apache.org by cm...@apache.org on 2015/09/18 23:47:39 UTC

incubator-htrace git commit: HTRACE-257. htrace-htraced: add web symlink rather than generating programmatically (cmccabe)

Repository: incubator-htrace
Updated Branches:
  refs/heads/master 47c9bffba -> e63f2c1ff


HTRACE-257. htrace-htraced: add web symlink rather than generating programmatically (cmccabe)


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

Branch: refs/heads/master
Commit: e63f2c1ff1b275eae26074e38bda5358a919c9c9
Parents: 47c9bff
Author: Colin P. Mccabe <cm...@apache.org>
Authored: Fri Sep 18 14:44:09 2015 -0700
Committer: Colin P. Mccabe <cm...@apache.org>
Committed: Fri Sep 18 14:47:33 2015 -0700

----------------------------------------------------------------------
 .gitignore                   | 1 -
 htrace-htraced/go/gobuild.sh | 3 ---
 htrace-htraced/go/web        | 1 +
 3 files changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/e63f2c1f/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index b56ff18..067a4b7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -11,6 +11,5 @@
 dependency-reduced-pom.xml
 htrace-htraced/go/build
 htrace-htraced/go/pkg
-htrace-htraced/go/web
 htrace-htraced/src/go
 htrace-htraced/bin

http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/e63f2c1f/htrace-htraced/go/gobuild.sh
----------------------------------------------------------------------
diff --git a/htrace-htraced/go/gobuild.sh b/htrace-htraced/go/gobuild.sh
index 2728b8f..3e9b30a 100755
--- a/htrace-htraced/go/gobuild.sh
+++ b/htrace-htraced/go/gobuild.sh
@@ -129,9 +129,6 @@ install)
     FLAGS="-X main.RELEASE_VERSION ${RELEASE_VERSION} -X main.GIT_VERSION ${GIT_VERSION}"
     go install ${TAGS} -ldflags "${FLAGS}" -v org/apache/htrace/... "$@" \
         || die "go install failed."
-    # Make a symlink to web src dir so can do development in-situ out
-    # of build dir. This is ugly but blame go build.
-    ln -fs "../../htrace-webapp/src/main/webapp" "${GOBIN}/../web"
     # Set the RPATH to make bundling leveldb and snappy easier.
     set_rpath "${GOBIN}/htraced"
     ;;

http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/e63f2c1f/htrace-htraced/go/web
----------------------------------------------------------------------
diff --git a/htrace-htraced/go/web b/htrace-htraced/go/web
new file mode 120000
index 0000000..aefd68d
--- /dev/null
+++ b/htrace-htraced/go/web
@@ -0,0 +1 @@
+../../htrace-webapp/src/main/webapp
\ No newline at end of file