Skip to content

Commit 2be4d58

Browse files
committed
v 0.117.2
- Instant test fix.
1 parent 85c424b commit 2be4d58

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

inc/functions.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@ function run_test_after_regenerate(){
4646

4747
function run_test_instant(){
4848
if [[ -n "${_wputools_test__file}" && -f "${_wputools_test__file}" ]];then
49-
echo '# RUNNING TESTS : BEFORE ACTION';
49+
echo '# RUNNING TESTS : INSTANT TEST';
5050
_wputools_test_instant_content=$(wputools_test_check_urls);
51-
echo "${_wputools_test_instant_content}" > diff-instant.txt;
51+
_current_timestamp=$(date +%Y%m%d-%H%M%S)
52+
echo "${_wputools_test_instant_content}" > "diff-instant-${_current_timestamp}.txt";
5253
fi;
5354
}
5455

wputools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
WPUTools(){
44

5-
local _WPUTOOLS_VERSION='0.117.1';
5+
local _WPUTOOLS_VERSION='0.117.2';
66
local _PHP_VERSIONS=(7.0 7.1 7.2 7.3 7.4 8.0 8.1 8.2 8.3 8.4 8.5 9.0)
77
local _PHP_VERSIONS_OBSOLETES=(7.0 7.1 7.2 7.3 7.4 8.0)
88
local _PHP_VERSIONS_ADVANCED=(8.3 8.4 8.5 9.0)

0 commit comments

Comments
 (0)