diff options
author | Ramón M. Gómez <ramongomez@us.es> | 2020-03-11 15:07:45 +0100 |
---|---|---|
committer | Ramón M. Gómez <ramongomez@us.es> | 2020-03-11 15:07:45 +0100 |
commit | b302b5462f17a1891b7580822887e20a8f15062c (patch) | |
tree | b5186135fab3ef3bc2a79adf0c7f55a3f1953339 | |
parent | 852bb8037637f290b2e600d442a92d63064d924c (diff) |
#959: Update OGAgent version.
-rw-r--r-- | admin/Sources/Clients/ogagent/src/opengnsys/__init__.py | 6 | ||||
-rw-r--r-- | admin/Sources/Clients/ogagent/src/setup.py | 2 | ||||
-rwxr-xr-x | installer/ogagent-devel-installer.sh | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/admin/Sources/Clients/ogagent/src/opengnsys/__init__.py b/admin/Sources/Clients/ogagent/src/opengnsys/__init__.py index 02e7c341..0197f320 100644 --- a/admin/Sources/Clients/ogagent/src/opengnsys/__init__.py +++ b/admin/Sources/Clients/ogagent/src/opengnsys/__init__.py @@ -38,10 +38,10 @@ import modules from RESTApi import REST, RESTError try: - with open('VERSION', 'r') as v: - VERSION = v.read() + with open('../VERSION', 'r') as v: + VERSION = v.read().strip() except IOError: - VERSION = '1.1.0' + VERSION = '1.1.1b' __title__ = 'OpenGnsys Agent' __version__ = VERSION diff --git a/admin/Sources/Clients/ogagent/src/setup.py b/admin/Sources/Clients/ogagent/src/setup.py index 15254f4f..85300f7e 100644 --- a/admin/Sources/Clients/ogagent/src/setup.py +++ b/admin/Sources/Clients/ogagent/src/setup.py @@ -63,7 +63,7 @@ import sys # Reading version file: try: with open('VERSION', 'r') as v: - VERSION = v.read() + VERSION = v.read().split() except IOError: VERSION = '1.1.0' diff --git a/installer/ogagent-devel-installer.sh b/installer/ogagent-devel-installer.sh index 201e67f9..d8745c52 100755 --- a/installer/ogagent-devel-installer.sh +++ b/installer/ogagent-devel-installer.sh @@ -37,7 +37,7 @@ read # Importing OGAgent source code. svn export --force $SVNURL $PROGDIR || exit 1 # Downloading Visual C++ Redistributable. -wget --unlink https://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe +wget --unlink https://download.microsoft.com/download/5/B/C/5BC5DBB3-652D-4DCE-B14A-475AB85EEF6E/vcredist_x86.exe -O $PROGDIR/vcredist_x86.exe # Update PyQt components. pushd ogagent/src >/dev/null |