You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by sj...@apache.org on 2020/09/01 14:17:13 UTC

[flink-web] branch asf-site updated: [hotfix] fix makefile

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

sjwiesman pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/flink-web.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 81bb32f  [hotfix] fix makefile
81bb32f is described below

commit 81bb32f2ec8252170dfe35626337de5cf6c680b5
Author: Seth Wiesman <sj...@gmail.com>
AuthorDate: Tue Sep 1 09:16:29 2020 -0500

    [hotfix] fix makefile
---
 Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 768bd60..8b48711 100644
--- a/Makefile
+++ b/Makefile
@@ -18,8 +18,8 @@
 
 .PHONY: docker-run 
 docker-run: 
-	docker run --rm --volume="$PWD:/srv/flink-web" --expose=4000 -p 4000:4000 -it ruby:2.5 bash -c 'cd /srv/flink-web && ./build.sh -p'
+	docker run --rm --volume="$$PWD:/srv/flink-web" --expose=4000 -p 4000:4000 -it ruby:2.5 bash -c 'cd /srv/flink-web && ./build.sh -p'
 
 .PHONY: docker-rebuild
 docker-rebuild:
-	docker run --rm --volume="$PWD:/srv/flink-web" --expose=4000 -p 4000:4000 -it ruby:2.5 bash -c 'cd /srv/flink-web && ./build.sh'
+	docker run --rm --volume="$$PWD:/srv/flink-web" --expose=4000 -p 4000:4000 -it ruby:2.5 bash -c 'cd /srv/flink-web && ./build.sh'