Adjusted gitignore and added cloning a specific branch/tag of cypherapps

This commit is contained in:
kexkey
2019-07-16 15:04:50 -04:00
parent f95c9610fb
commit 0d4e1d8414
2 changed files with 4 additions and 2 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.idea
dist
~dist/setup.sh
!dist/setup.sh
!dist/sr.sh

3
dist/setup.sh vendored
View File

@@ -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"