From 1a4dabd665aeba8c568d40a5116d0e53dc3d509c Mon Sep 17 00:00:00 2001 From: ca333 Date: Thu, 28 Mar 2019 02:33:16 +0100 Subject: [PATCH 1/3] update travis --- .travis.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bfc8b8b4a..d7291e03e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,9 +6,6 @@ matrix: dist: xenial sudo: required env: LINUX_DEPLOY="true" OSX_DEPLOY="false" $TRAVIS_OS_NAME="linux" - - os: osx - osx_image: xcode8 - env: OSX_DEPLOY="true" LINUX_DEPLOY="false" $TRAVIS_OS_NAME="osx" branches: only: - master From 7519e1c21913002d51abe3cb42b56d2272c070e2 Mon Sep 17 00:00:00 2001 From: ca333 Date: Thu, 28 Mar 2019 03:04:52 +0100 Subject: [PATCH 2/3] update branch --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9a8582891..74d890265 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Build Status](https://travis-ci.org/KomodoPlatform/komodo.svg?branch=dev)](https://travis-ci.org/KomodoPlatform/komodo) +[![Build Status](https://travis-ci.org/KomodoPlatform/komodo.svg?branch=master)](https://travis-ci.org/KomodoPlatform/komodo) --- ![Komodo Logo](https://i.imgur.com/vIwVtqv.png "Komodo Logo") From cd504f92a436f89e6e85c6a643ab38c1effba056 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kulcs=C3=A1r=20B=C3=A9la=20Tibor?= Date: Mon, 8 Jul 2019 18:51:57 +0200 Subject: [PATCH 3/3] modify fetch_params to handle accents and whitespaces in user folder --- zcutil/fetch-params.bat | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/zcutil/fetch-params.bat b/zcutil/fetch-params.bat index 8b14b1845..f9e70d481 100644 --- a/zcutil/fetch-params.bat +++ b/zcutil/fetch-params.bat @@ -1,28 +1,28 @@ @echo off call :GET_CURRENT_DIR cd %THIS_DIR% -IF NOT EXIST %APPDATA%\ZcashParams ( -MKDIR %APPDATA%\ZcashParams +IF NOT EXIST "%APPDATA%"\ZcashParams ( +MKDIR "%APPDATA%"\ZcashParams ) -IF NOT EXIST %APPDATA%\ZcashParams\sprout-proving.key ( +IF NOT EXIST "%APPDATA%"\ZcashParams\sprout-proving.key ( ECHO Downloading Zcash trusted setup sprout-proving.key, this may take a while ... - .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sprout-proving.key -O %APPDATA%\ZcashParams\sprout-proving.key + .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sprout-proving.key -O "%APPDATA%"\ZcashParams\sprout-proving.key ) -IF NOT EXIST %APPDATA%\ZcashParams\sprout-verifying.key ( +IF NOT EXIST "%APPDATA%"\ZcashParams\sprout-verifying.key ( ECHO Downloading Zcash trusted setup sprout-verifying.key, this may take a while ... - .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sprout-verifying.key -O %APPDATA%\ZcashParams\sprout-verifying.key + .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sprout-verifying.key -O "%APPDATA%"\ZcashParams\sprout-verifying.key ) -IF NOT EXIST %APPDATA%\ZcashParams\sapling-spend.params ( +IF NOT EXIST "%APPDATA%"\ZcashParams\sapling-spend.params ( ECHO Downloading Zcash trusted setup sprout-proving.key, this may take a while ... - .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sapling-spend.params -O %APPDATA%\ZcashParams\sapling-spend.params + .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sapling-spend.params -O "%APPDATA%"\ZcashParams\sapling-spend.params ) -IF NOT EXIST %APPDATA%\ZcashParams\sapling-output.params ( +IF NOT EXIST "%APPDATA%"\ZcashParams\sapling-output.params ( ECHO Downloading Zcash trusted setup sprout-verifying.key, this may take a while ... - .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sapling-output.params -O %APPDATA%\ZcashParams\sapling-output.params + .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sapling-output.params -O "%APPDATA%"\ZcashParams\sapling-output.params ) -IF NOT EXIST %APPDATA%\ZcashParams\sprout-groth16.params ( +IF NOT EXIST "%APPDATA%"\ZcashParams\sprout-groth16.params ( ECHO Downloading Zcash trusted setup sprout-verifying.key, this may take a while ... - .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sprout-groth16.params -O %APPDATA%\ZcashParams\sprout-groth16.params + .\wget64.exe --progress=dot:giga --continue --retry-connrefused --waitretry=3 --timeout=30 https://z.cash/downloads/sprout-groth16.params -O "%APPDATA%"\ZcashParams\sprout-groth16.params ) goto :EOF :GET_CURRENT_DIR