From 01864e49802f9a41d5d2c0c67a8d327f8a40941b Mon Sep 17 00:00:00 2001 From: deajan Date: Mon, 1 Oct 2018 14:03:09 +0200 Subject: [PATCH] Rebuilt targets --- dev/debug_osync.sh | 4 ++-- osync.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev/debug_osync.sh b/dev/debug_osync.sh index a426959..46ee5ee 100755 --- a/dev/debug_osync.sh +++ b/dev/debug_osync.sh @@ -41,7 +41,7 @@ IS_STABLE=no # CleanUp no #__WITH_PARANOIA_DEBUG _OFUNCTIONS_VERSION=2.3.0-RC1 -_OFUNCTIONS_BUILD=2018100102 +_OFUNCTIONS_BUILD=2018100103 _OFUNCTIONS_BOOTSTRAP=true ## To use in a program, define the following variables: @@ -138,7 +138,7 @@ function PoorMansRandomGenerator { local number # Some read bytes can't be used, se we read twice the number of required bytes - dd if=/dev/urandom bs=$digits count=2 | while read -r -n1 char; do + dd if=/dev/urandom bs=$digits count=2 2> /dev/null | while read -r -n1 char; do number=$number$(printf "%d" "'$char") if [ ${#number} -ge $digits ]; then echo ${number:0:$digits} diff --git a/osync.sh b/osync.sh index 18e990f..d763d54 100755 --- a/osync.sh +++ b/osync.sh @@ -12,7 +12,7 @@ IS_STABLE=no _OFUNCTIONS_VERSION=2.3.0-RC1 -_OFUNCTIONS_BUILD=2018100102 +_OFUNCTIONS_BUILD=2018100103 _OFUNCTIONS_BOOTSTRAP=true ## To use in a program, define the following variables: @@ -105,7 +105,7 @@ function PoorMansRandomGenerator { local number # Some read bytes can't be used, se we read twice the number of required bytes - dd if=/dev/urandom bs=$digits count=2 | while read -r -n1 char; do + dd if=/dev/urandom bs=$digits count=2 2> /dev/null | while read -r -n1 char; do number=$number$(printf "%d" "'$char") if [ ${#number} -ge $digits ]; then echo ${number:0:$digits}