From 0d4e1d84144fbbfc8ca8f4794ea2674d7d7ff8a9 Mon Sep 17 00:00:00 2001 From: kexkey Date: Tue, 16 Jul 2019 15:04:50 -0400 Subject: [PATCH] Adjusted gitignore and added cloning a specific branch/tag of cypherapps --- .gitignore | 3 ++- dist/setup.sh | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 37c0399..c8032c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea dist -~dist/setup.sh +!dist/setup.sh +!dist/sr.sh diff --git a/dist/setup.sh b/dist/setup.sh index b27786b..ee7d775 100755 --- a/dist/setup.sh +++ b/dist/setup.sh @@ -688,7 +688,7 @@ install_apps() { if [ ! -d "$current_path/apps" ]; then local apps_repo="https://github.com/SatoshiPortal/cypherapps.git" echo " clone $apps_repo into apps" - docker run --rm -v "$current_path":/git --entrypoint git cyphernode/cyphernodeconf:$CONF_VERSION clone "$apps_repo" /git/apps > /dev/null 2>&1 + docker run --rm -v "$current_path":/git --entrypoint git cyphernode/cyphernodeconf:$CONF_VERSION clone --single-branch -b ${CYPHERAPPS_VERSION} "$apps_repo" /git/apps > /dev/null 2>&1 fi } @@ -716,6 +716,7 @@ PROXY_VERSION="v0.2.1" NOTIFIER_VERSION="v0.2.1" PROXYCRON_VERSION="v0.2.1" OTSCLIENT_VERSION="v0.2.1" +CYPHERAPPS_VERSION="v0.2.1" PYCOIN_VERSION="v0.2.1" BITCOIN_VERSION="v0.18.0" LIGHTNING_VERSION="v0.7.1"